home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / unix-gcc.mak < prev    next >
Text File  |  1997-06-22  |  199KB  |  5,667 lines

  1. #    Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # Makefile fragment containing the current revision identification.
  16.  
  17. # Define the name of this makefile.
  18. VERSION_MAK=version.mak
  19.  
  20. # Major and minor version numbers.
  21. # MINOR0 is different from MINOR only if MINOR is a single digit.
  22. GS_VERSION_MAJOR=5
  23. GS_VERSION_MINOR=01
  24. GS_VERSION_MINOR0=01
  25. # Revision date: year x 10000 + month x 100 + day.
  26. GS_REVISIONDATE=19970622
  27.  
  28. # Derived values
  29. GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
  30. GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR)
  31. GS_REVISION=$(GS_VERSION)
  32. #    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  33. # This file is part of Aladdin Ghostscript.
  34. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  35. # or distributor accepts any responsibility for the consequences of using it,
  36. # or for whether it serves any particular purpose or works at all, unless he
  37. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  38. # License (the "License") for full details.
  39. # Every copy of Aladdin Ghostscript must include a copy of the License,
  40. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  41. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  42. # under certain conditions described in the License.  Among other things, the
  43. # License requires that the copyright notice and this notice be preserved on
  44. # all copies.
  45.  
  46. # makefile for Unix/gcc/X11 configuration.
  47. # Note: this makefile assumes you are using gcc in ANSI mode.
  48.  
  49. #****************************************************************#
  50. #   If you want to change options, DO NOT edit unix-gcc.mak      #
  51. #   or makefile.  Edit gcc-head.mak and run the tar_cat script.  #
  52. #****************************************************************#
  53.  
  54. # ------------------------------- Options ------------------------------- #
  55.  
  56. ####### The following are the only parts of the file you should need to edit.
  57.  
  58. # ------ Generic options ------ #
  59.  
  60. # Define the installation commands and target directories for
  61. # executables and files.  The commands are only relevant to `make install';
  62. # the directories also define the default search path for the
  63. # initialization files (gs_*.ps) and the fonts.
  64.  
  65. INSTALL = install -c
  66. INSTALL_PROGRAM = $(INSTALL) -m 755
  67. INSTALL_DATA = $(INSTALL) -m 644
  68.  
  69. prefix = /usr/local
  70. exec_prefix = $(prefix)
  71. bindir = $(exec_prefix)/bin
  72. scriptdir = $(bindir)
  73. mandir = $(prefix)/man
  74. man1ext = 1
  75. man1dir = $(mandir)/man$(man1ext)
  76. datadir = $(prefix)/share
  77. gsdir = $(datadir)/ghostscript
  78. gsdatadir = $(gsdir)/$(GS_DOT_VERSION)
  79.  
  80. docdir=$(gsdatadir)/doc
  81. exdir=$(gsdatadir)/examples
  82. GS_DOCDIR=$(docdir)
  83.  
  84. # Define the default directory/ies for the runtime
  85. # initialization and font files.  Separate multiple directories with a :.
  86.  
  87. GS_LIB_DEFAULT=$(gsdatadir):$(gsdir)/fonts
  88.  
  89. # Define whether or not searching for initialization files should always
  90. # look in the current directory first.  This leads to well-known security
  91. # and confusion problems, but users insist on it.
  92. # NOTE: this also affects searching for files named on the command line:
  93. # see the "File searching" section of use.txt for full details.
  94. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  95.  
  96. SEARCH_HERE_FIRST=1
  97.  
  98. # Define the name of the interpreter initialization file.
  99. # (There is no reason to change this.)
  100.  
  101. GS_INIT=gs_init.ps
  102.  
  103. # Choose generic configuration options.
  104.  
  105. # -DDEBUG
  106. #    includes debugging features (-Z switch) in the code.
  107. #      Code runs substantially slower even if no debugging switches
  108. #      are set.
  109. # -DNOPRIVATE
  110. #    makes private (static) procedures and variables public,
  111. #      so they are visible to the debugger and profiler.
  112. #      No execution time or space penalty.
  113.  
  114. #GENOPT=-DDEBUG
  115. GENOPT=
  116.  
  117. # Define the name of the executable file.
  118.  
  119. GS=gs
  120.  
  121. # Define the directory where the IJG JPEG library sources are stored,
  122. # and the major version of the library that is stored there.
  123. # You may need to change this if the IJG library version changes.
  124. # See jpeg.mak for more information.
  125.  
  126. JSRCDIR=jpeg-6a
  127. JVERSION=6
  128.  
  129. # Define the directory where the PNG library sources are stored,
  130. # and the version of the library that is stored there.
  131. # You may need to change this if the libpng version changes.
  132. # See libpng.mak for more information.
  133.  
  134. PSRCDIR=libpng
  135. PVERSION=96
  136.  
  137. # Choose whether to use a shared version of the PNG library, and if so,
  138. # what its name is.
  139. # See gs.mak and make.txt for more information.
  140.  
  141. SHARE_LIBPNG=0
  142. LIBPNG_NAME=png
  143.  
  144. # Define the directory where the zlib sources are stored.
  145. # See zlib.mak for more information.
  146.  
  147. ZSRCDIR=zlib
  148.  
  149. # Choose whether to use a shared version of the zlib library, and if so,
  150. # what its name is (usually libz, but sometimes libgz).
  151. # See gs.mak and make.txt for more information.
  152.  
  153. SHARE_ZLIB=0
  154. #ZLIB_NAME=gz
  155. ZLIB_NAME=z
  156.  
  157. # Define how to build the library archives.  (These are not used in any
  158. # standard configuration.)
  159.  
  160. AR=ar
  161. ARFLAGS=qc
  162. RANLIB=ranlib
  163.  
  164. # Define the configuration ID.  Read gs.mak carefully before changing this.
  165.  
  166. CONFIG=
  167.  
  168. # ------ Platform-specific options ------ #
  169.  
  170. # Define the name of the C compiler.
  171.  
  172. CC=gcc
  173.  
  174. # Define the name of the linker for the final link step.
  175. # Normally this is the same as the C compiler.
  176.  
  177. CCLD=$(CC)
  178.  
  179. # Define the default gcc flags.
  180. # To work around the gcc 2.7.x optimizer bug,
  181. # add -Dconst= and remove -Wcast-qual and -Wwrite-strings.
  182.  
  183. #GCFLAGS=-Wall -Wcast-qual -Wpointer-arith -Wstrict-prototypes -Wwrite-strings
  184. GCFLAGS=-Dconst= -Wall -Wpointer-arith -Wstrict-prototypes
  185.  
  186. # Define the other compilation flags.  Add at most one of the following:
  187. #    -DBSD4_2 for 4.2bsd systems.
  188. #    -DSYSV for System V or DG/UX.
  189. #     -DSYSV -D__SVR3 for SCO ODT, ISC Unix 2.2 or before,
  190. #       or any System III Unix, or System V release 3-or-older Unix.
  191. #    -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
  192. #    -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
  193. # XCFLAGS can be set from the command line.
  194. # We don't include -ansi, because this gets in the way of the platform-
  195. #   specific stuff that <math.h> typically needs; nevertheless, we expect
  196. #   gcc to accept ANSI-style function prototypes and function definitions.
  197. XCFLAGS=
  198.  
  199. CFLAGS=-O $(GCFLAGS) $(XCFLAGS)
  200.  
  201. # Define platform flags for ld.
  202. # SunOS 4.n may need -Bstatic.
  203. # XLDFLAGS can be set from the command line.
  204. XLDFLAGS=
  205.  
  206. LDFLAGS=$(XLDFLAGS)
  207.  
  208. # Define any extra libraries to link into the executable.
  209. # ISC Unix 2.2 wants -linet.
  210. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  211. # SVR4 may need -lnsl.
  212. # (Libraries required by individual drivers are handled automatically.)
  213.  
  214. EXTRALIBS=
  215.  
  216. # Define the include switch(es) for the X11 header files.
  217. # This can be null if handled in some other way (e.g., the files are
  218. # in /usr/include, or the directory is supplied by an environment variable);
  219. # in particular, SCO Xenix, Unix, and ODT just want
  220. #XINCLUDE=
  221. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  222. # not in $(XINCLUDE).
  223.  
  224. XINCLUDE=-I/usr/local/X/include
  225.  
  226. # Define the directory/ies and library names for the X11 library files.
  227. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
  228. # (dynamic libraries on SVR4) and should not include -L.
  229. # Both can be null if these files are in the default linker search path;
  230. # in particular, SCO Xenix, Unix, and ODT just want
  231. #XLIBDIRS=
  232. # X11R6 (on any platform) may need
  233. #XLIBS=Xt SM ICE Xext X11
  234.  
  235. #XLIBDIRS=-L/usr/local/X/lib
  236. XLIBDIRS=-L/usr/X11/lib
  237. XLIBDIR=
  238. XLIBS=Xt Xext X11
  239.  
  240. # Define whether this platform has floating point hardware:
  241. #    FPU_TYPE=2 means floating point is faster than fixed point.
  242. # (This is the case on some RISCs with multiple instruction dispatch.)
  243. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  244. # than fixed point.
  245. #    FPU_TYPE=0 means that floating point may be considerably slower.
  246. #    FPU_TYPE=-1 means that floating point is always much slower than
  247. # fixed point.
  248.  
  249. FPU_TYPE=1
  250.  
  251. # ------ Devices and features ------ #
  252.  
  253. # Choose the language feature(s) to include.  See gs.mak for details.
  254.  
  255. FEATURE_DEVS=level2.dev pdf.dev pipe.dev
  256.  
  257. # Choose whether to compile the .ps initialization files into the executable.
  258. # See gs.mak for details.
  259.  
  260. COMPILE_INITS=0
  261.  
  262. # Choose whether to store band lists on files or in memory.
  263. # The choices are 'file' or 'memory'.
  264.  
  265. BAND_LIST_STORAGE=file
  266.  
  267. # Choose which compression method to use when storing band lists in memory.
  268. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  269. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  270.  
  271. BAND_LIST_COMPRESSOR=zlib
  272.  
  273. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  274. # See gs.mak and sfxfd.c for more details.
  275.  
  276. FILE_IMPLEMENTATION=stdio
  277.  
  278. # Choose the device(s) to include.  See devs.mak for details.
  279.  
  280. DEVICE_DEVS=x11.dev x11alpha.dev x11cmyk.dev x11gray2.dev x11mono.dev
  281. DEVICE_DEVS1=
  282. DEVICE_DEVS2=
  283. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  284. DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  285. DEVICE_DEVS5=
  286. DEVICE_DEVS6=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  287. DEVICE_DEVS7=faxg3.dev faxg32d.dev faxg4.dev
  288. DEVICE_DEVS8=pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev pcxcmyk.dev
  289. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  290. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  291. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  292. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  293. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  294. DEVICE_DEVS14=jpeg.dev jpeggray.dev
  295. DEVICE_DEVS15=pdfwrite.dev pswrite.dev epswrite.dev pxlmono.dev pxlcolor.dev
  296.  
  297. # ---------------------------- End of options --------------------------- #
  298.  
  299. # Define the name of the partial makefile that specifies options --
  300. # used in dependencies.
  301.  
  302. MAKEFILE=gcc-head.mak
  303.  
  304. # Define the ANSI-to-K&R dependency.  (gcc accepts ANSI syntax.)
  305.  
  306. AK=
  307.  
  308. # Define the compilation rules and flags.
  309.  
  310. CCC=$(CC) $(CCFLAGS) -c
  311. CCAUX=$(CC)
  312. #We can't use -fomit-frame-pointer with -pg....
  313. #CCLEAF=$(CCC)
  314. CCLEAF=$(CCC) -fomit-frame-pointer
  315.  
  316. # --------------------------- Generic makefile ---------------------------- #
  317.  
  318. # The remainder of the makefile (unixhead.mak, gs.mak, devs.mak, unixtail.mak)
  319. # is generic.  tar_cat concatenates all these together.
  320. #    Copyright (C) 1990, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  321. # This file is part of Aladdin Ghostscript.
  322. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  323. # or distributor accepts any responsibility for the consequences of using it,
  324. # or for whether it serves any particular purpose or works at all, unless he
  325. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  326. # License (the "License") for full details.
  327. # Every copy of Aladdin Ghostscript must include a copy of the License,
  328. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  329. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  330. # under certain conditions described in the License.  Among other things, the
  331. # License requires that the copyright notice and this notice be preserved on
  332. # all copies.
  333.  
  334. # Partial makefile common to all Unix configurations.
  335.  
  336. # This part of the makefile gets inserted after the compiler-specific part
  337. # (xxx-head.mak) and before gs.mak and devs.mak.
  338.  
  339. # ----------------------------- Generic stuff ----------------------------- #
  340.  
  341. # Define the platform name.  For a "stock" System V platform,
  342. # use sysv_ instead of unix_.
  343.  
  344. PLATFORM=unix_
  345.  
  346. # Define the syntax for command, object, and executable files.
  347.  
  348. CMD=
  349. O=-o ./
  350. OBJ=o
  351. XE=
  352. XEAUX=
  353.  
  354. # Define the current directory prefix and command invocations.
  355.  
  356. CAT=cat
  357. D=/
  358. EXPP=
  359. EXP=./
  360. SHELL=/bin/sh
  361. SH=$(SHELL)
  362. SHP=$(SH) $(EXP)
  363.  
  364. # Define generic commands.
  365.  
  366. CP_=cp
  367. RM_=rm -f
  368. RMN_=rm -f
  369.  
  370. # Define the arguments for genconf.
  371.  
  372. CONFILES=-p "%s&s&&" -pl "&-l%s&s&&" -pL "&-L%s&s&&" -ol $(ld_tr)
  373.  
  374. # Define the compilation rules and flags.
  375.  
  376. CCFLAGS=$(GENOPT) $(CFLAGS)
  377.  
  378. .c.o: $(AK)
  379.     $(CCC) $*.c
  380.  
  381. CCCF=$(CCC)
  382. CCD=$(CCC)
  383. CCINT=$(CCC)
  384.  
  385. BEGINFILES=
  386. CCBEGIN=$(CCC) *.c
  387.  
  388. # Patch a couple of PC-specific things that aren't relevant to Unix builds,
  389. # but that cause `make' to produce warnings.
  390.  
  391. BGIDIR=***UNUSED***
  392. PCFBASM=
  393. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  394. # This file is part of Aladdin Ghostscript.
  395. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  396. # or distributor accepts any responsibility for the consequences of using it,
  397. # or for whether it serves any particular purpose or works at all, unless he
  398. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  399. # License (the "License") for full details.
  400. # Every copy of Aladdin Ghostscript must include a copy of the License,
  401. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  402. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  403. # under certain conditions described in the License.  Among other things, the
  404. # License requires that the copyright notice and this notice be preserved on
  405. # all copies.
  406.  
  407. # Generic makefile, common to all platforms.
  408. # The platform-specific makefiles `include' this file.
  409. # They define the following symbols:
  410. #    GS - the name of the executable (without the extension, if any).
  411. #    GS_LIB_DEFAULT - the default directory/ies for searching for the
  412. #        initialization and font files at run time.
  413. #    SEARCH_HERE_FIRST - the default setting of -P (whether or not to
  414. #        look for files in the current directory first).
  415. #    GS_DOCDIR - the directory where documentation will be available
  416. #        at run time.
  417. #    JSRCDIR - the directory where the IJG JPEG library source code
  418. #        is stored (at compilation time).
  419. #    JVERSION - the major version number of the IJG JPEG library.
  420. #    PSRCDIR, PVERSION - the same for libpng.
  421. #    ZSRCDIR - the same for zlib.
  422. #    SHARE_LIBPNG - normally 0; if set to 1, asks the linker to use
  423. #        an existing compiled libpng (-lpng) instead of compiling and
  424. #        linking libpng explicitly.
  425. #    LIBPNG_NAME, the name of the shared libpng, currently always
  426. #        png (libpng, -lpng).
  427. #    SHARE_ZLIB - normally 0; if set to 1, asks the linker to use
  428. #        an existing compiled zlib (-lgz or -lz) instead of compiling
  429. #        and linking libgz/libz explicitly.
  430. #    ZLIB_NAME - the name of the shared zlib, either gz (for libgz, -lgz)
  431. #        or z (for libz, -lz).
  432. #    CONFIG - a configuration ID, added at the request of a customer,
  433. #        that is supposed to help in maintaining multiple variants in
  434. #        a single directory.  Normally this is an empty string;
  435. #        it may be any string that is legal as part of a file name.
  436. #    DEVICE_DEVS - the devices to include in the executable.
  437. #        See devs.mak for details.
  438. #    DEVICE_DEVS1...DEVICE_DEVS15 - additional devices, if the definition
  439. #        of DEVICE_DEVS doesn't fit on one line.  See devs.mak for details.
  440. #    FEATURE_DEVS - what features to include in the executable.
  441. #        Normally this is one of:
  442. #            level1 - a standard PostScript Level 1 language
  443. #            interpreter.
  444. #            level2 - a standard PostScript Level 2 language
  445. #            interpreter.
  446. #            pdf - a PDF-capable interpreter.
  447. #        You may include both level1 and pdf, or both level2 and pdf.
  448. #        The following feature may be added to either of the standard
  449. #        configurations:
  450. #            ccfonts - precompile fonts into C, and link them
  451. #            with the executable.  See fonts.txt for details.
  452. #        The remaining features are of interest primarily to developers
  453. #        who want to "mix and match" features to create custom
  454. #        configurations:
  455. #            dps - (partial) support for Display PostScript extensions:
  456. #            see language.txt for details.
  457. #            btoken - support for binary token encodings.
  458. #            Included automatically in the dps and level2 features.
  459. #            cidfont - (currently partial) support for CID-keyed fonts.
  460. #            color - support for the Level 1 CMYK color extensions.
  461. #            Included automatically in the dps and level2 features.
  462. #            compfont - support for composite (type 0) fonts.
  463. #            Included automatically in the level2 feature.
  464. #            dct - support for DCTEncode/Decode filters.
  465. #            Included automatically in the level2 feature.
  466. #            epsf - support for recognizing and skipping the binary
  467. #            header of MS-DOS EPSF files.
  468. #            filter - support for Level 2 filters (other than eexec,
  469. #            ASCIIHexEncode/Decode, NullEncode, PFBDecode,
  470. #            RunLengthEncode/Decode, and SubFileDecode, which are
  471. #            always included, and DCTEncode/Decode,
  472. #            which are separate).
  473. #            Included automatically in the level2 feature.
  474. #            fzlib - support for zlibEncode/Decode filters.
  475. #            ttfont - support for TrueType fonts.
  476. #            type1 - support for Type 1 fonts and eexec;
  477. #            normally included automatically in all configurations.
  478. #            type42 - support for Type 42 (embedded TrueType) fonts.
  479. #            Included automatically in the level2 feature.
  480. #        There are quite a number of other sub-features that can be
  481. #        selectively included in or excluded from a configuration,
  482. #        but the above are the ones that are most likely to be of
  483. #        interest.
  484. #    COMPILE_INITS - normally 0; if set to 1, compiles the PostScript
  485. #        language initialization files (gs_init.ps et al) into the
  486. #        executable, eliminating the need for these files to be present
  487. #        at run time.
  488. #    BAND_LIST_STORAGE - normally file; if set to memory, stores band
  489. #        lists in memory (with compression if needed).
  490. #    BAND_LIST_COMPRESSOR - normally zlib: selects the compression method
  491. #        to use for band lists in memory.
  492. #    FILE_IMPLEMENTATION - normally stdio; if set to fd, uses file
  493. #        descriptors instead of buffered stdio for file I/O; if set to
  494. #        both, provides both implementations with different procedure
  495. #        names for the fd-based implementation (see sfxfd.c for
  496. #        more information).
  497. #    EXTEND_NAMES - a value N between 0 and 6, indicating that the name
  498. #        table should have a capacity of 2^(16+N) names.  This normally
  499. #        should be set to 0 (or left undefined), since non-zero values
  500. #        result in a larger fixed space overhead and slightly slower code.
  501. #        EXTEND_NAMES is ignored in 16-bit environments.
  502. #
  503. # It is very unlikely that anyone would want to edit the remaining
  504. #   symbols, but we describe them here for completeness:
  505. #    GS_INIT - the name of the initialization file for the interpreter,
  506. #        normally gs_init.ps.
  507. #    PLATFORM - a "device" name for the platform, so that platforms can
  508. #        add various kinds of resources like devices and features.
  509. #    CMD - the suffix for shell command files (e.g., null or .bat).
  510. #        (This is only needed in a few places.)
  511. #    D - the directory separator character (\ for MS-DOS, / for Unix).
  512. #    O - the string for specifying the output file from the C compiler
  513. #        (-o for MS-DOS, -o ./ for Unix).
  514. #    OBJ - the extension for relocatable object files (e.g., o or obj).
  515. #    XE - the extension for executable files (e.g., null or .exe).
  516. #    XEAUX - the extension for the executable files (e.g., null or .exe)
  517. #        for the utility programs (ansi2knr and those compiled with
  518. #        CCAUX).
  519. #    BEGINFILES - the list of files that `make begin' and `make clean'
  520. #        should delete.
  521. #    CCA2K - the C invocation for the ansi2knr program, which is the only
  522. #        one that doesn't use ANSI C syntax.  (It is only needed if
  523. #        the main C compiler also isn't an ANSI compiler.)
  524. #    CCAUX - the C invocation for auxiliary programs (echogs, genarch,
  525. #        genconf, geninit).
  526. #    CCBEGIN - the compilation command for `make begin', normally
  527. #        $(CCC) *.c.
  528. #    CCC - the C invocation for normal compilation.
  529. #    CCD - the C invocation for files that store into frame buffers or
  530. #        device registers.  Needed because some optimizing compilers
  531. #        will eliminate necessary stores.
  532. #    CCCF - the C invocation for compiled fonts and other large,
  533. #        self-contained data modules.  Needed because MS-DOS
  534. #        requires using the 'huge' memory model for these.
  535. #    CCINT - the C invocation for compiling the main interpreter module,
  536. #        normally the same as CCC: this is needed because the
  537. #        Borland compiler generates *worse* code for this module
  538. #        (but only this module) when optimization (-O) is turned on.
  539. #    CCLEAF - the C invocation for compiling modules that contain only
  540. #        leaf procedures, which don't need to build stack frames.
  541. #        This is needed only because many compilers aren't able to
  542. #        recognize leaf procedures on their own.
  543. #    AK - if source files must be converted from ANSI to K&R syntax,
  544. #        this is $(ANSI2KNR_XE); if not, it is null.
  545. #        If a particular platform requires other utility programs
  546. #        to be built, AK must include them too.
  547. #    SHP - the prefix for invoking a shell script in the current directory
  548. #        (null for MS-DOS, $(SH) ./ for Unix).
  549. #    EXPP, EXP - the prefix for invoking an executable program in the
  550. #        current directory (null for MS-DOS, ./ for Unix).
  551. #    SH - the shell for scripts (null on MS-DOS, sh on Unix).
  552. #    CONFILES - the arguments for genconf to generate the appropriate
  553. #        linker control files (various).
  554. #    CP_ - the command for copying one file to another.  Because of
  555. #        limitations in the MS-DOS/MS Windows environment, the
  556. #        second argument must either be '.' (in which case the
  557. #        write date may be either preserved or set to the current
  558. #        date) or a file name (in which case the write date is
  559. #        always updated).
  560. #    RM_ - the command for deleting (a) file(s) (including wild cards,
  561. #        but limited to a single file or pattern).
  562. #    RMN_ = the command for deleting multiple files / patterns.
  563. #
  564. # The platform-specific makefiles must also include rules for creating
  565. # certain dynamically generated files:
  566. #    gconfig_.h - this indicates the presence or absence of
  567. #        certain system header files that are located in different
  568. #        places on different systems.  (It could be generated by
  569. #        the GNU `configure' program.)
  570. #    gconfigv.h - this indicates the status of certain machine-
  571. #        and configuration-specific features derived from definitions
  572. #        in the platform-specific makefile.
  573.  
  574. # Define the name of this makefile.
  575. GS_MAK=gs.mak
  576.  
  577. # Define the names of the executables.
  578. GS_XE=$(GS)$(XE)
  579. ANSI2KNR_XE=ansi2knr$(XEAUX)
  580. ECHOGS_XE=echogs$(XEAUX)
  581. GENARCH_XE=genarch$(XEAUX)
  582. GENCONF_XE=genconf$(XEAUX)
  583. GENINIT_XE=geninit$(XEAUX)
  584.  
  585. # Define the names of the CONFIG-dependent header files.
  586. # gconfig*.h and gconfx*.h are generated dynamically.
  587. gconfig_h=gconfxx$(CONFIG).h
  588. gconfigf_h=gconfxc$(CONFIG).h
  589.  
  590. # Watcom make insists that rules have a non-empty body!
  591. all default: $(GS_XE)
  592.     $(RM_) _temp_*
  593.  
  594. distclean maintainer-clean realclean: clean
  595.     $(RM_) makefile
  596.  
  597. clean: mostlyclean
  598.     $(RM_) arch.h
  599.     $(RM_) $(GS_XE)
  600.  
  601. mostlyclean:
  602.     $(RMN_) *.$(OBJ) *.a core gmon.out
  603.     $(RMN_) *.dev *.d_* devs*.tr gconfig*.h gconfx*.h j*.h o*.tr l*.tr
  604.     $(RMN_) deflate.h zutil.h
  605.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  606.     $(RMN_) _temp_* _temp_*.* *.map *.sym
  607.     $(RMN_) $(ANSI2KNR_XE) $(ECHOGS_XE) $(GENARCH_XE) $(GENCONF_XE) $(GENINIT_XE)
  608.     $(RMN_) gs_init.c $(BEGINFILES)
  609.  
  610. # Remove only configuration-dependent information.
  611. config-clean:
  612.     $(RMN_) *.dev devs*.tr gconfig*.h gconfx*.h o*.tr l*.tr
  613.  
  614. # A rule to do a quick and dirty compilation attempt when first installing
  615. # the interpreter.  Many of the compilations will fail:
  616. # follow this with 'make'.
  617.  
  618. begin:
  619.     $(RMN_) arch.h gconfig*.h gconfx*.h $(GENARCH_XE) $(GS_XE)
  620.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  621.     $(RMN_) gs_init.c $(BEGINFILES)
  622.     make arch.h gconfigv.h
  623.     - $(CCBEGIN)
  624.     $(RMN_) gconfig.$(OBJ) gdev*.$(OBJ) gp_*.$(OBJ) gscdefs.$(OBJ) gsmisc.$(OBJ)
  625.     $(RMN_) icfontab.$(OBJ) iconfig.$(OBJ) iinit.$(OBJ) interp.$(OBJ)
  626.  
  627. # Auxiliary programs
  628.  
  629. arch.h: $(GENARCH_XE)
  630.     $(EXPP) $(EXP)genarch arch.h
  631.  
  632. # Macros for constructing the *.dev files that describe features and
  633. # devices.
  634. SETDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-obj
  635. SETPDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-include -lpage -l-obj
  636. SETMOD=$(EXP)echogs -e .dev -w- -l-obj
  637. ADDMOD=$(EXP)echogs -e .dev -a-
  638.  
  639. # Define the compilation commands for the third-party libraries.
  640. CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR) -DPNG_USE_CONST
  641. CCCJ=$(CCC) -I. -I$(JSRCDIR)
  642. CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  643.  
  644. ######################## How to define new 'features' #######################
  645. #
  646. # One defines new 'features' exactly like devices (see devs.mak for details).
  647. # For example, one would define a feature abc by adding the following to
  648. # gs.mak:
  649. #
  650. #    abc_=abc1.$(OBJ) ...
  651. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_)
  652. #        $(SETMOD) abc $(abc_)
  653. #        $(ADDMOD) abc -obj ... [if needed]
  654. #        $(ADDMOD) abc -oper ... [if appropriate]
  655. #        $(ADDMOD) abc -ps ... [if appropriate]
  656. #
  657. # If the abc feature requires the presence of some other features jkl and
  658. # pqr, then the rules must look like this:
  659. #
  660. #    abc_=abc1.$(OBJ) ...
  661. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_) jkl.dev pqr.dev
  662. #        $(SETMOD) abc $(abc_)
  663. #        ...
  664. #        $(ADDMOD) abc -include jkl pqr
  665.  
  666. # --------------------- Configuration-dependent files --------------------- #
  667.  
  668. # gconfig.h shouldn't have to depend on DEVS_ALL, but that would
  669. # involve rewriting gsconfig to only save the device name, not the
  670. # contents of the <device>.dev files.
  671. # FEATURE_DEVS must precede DEVICE_DEVS so that devices can override
  672. # features in obscure cases.
  673.  
  674. DEVS_ALL=$(PLATFORM).dev $(FEATURE_DEVS) \
  675.   $(DEVICE_DEVS) $(DEVICE_DEVS1) \
  676.   $(DEVICE_DEVS2) $(DEVICE_DEVS3) $(DEVICE_DEVS4) $(DEVICE_DEVS5) \
  677.   $(DEVICE_DEVS6) $(DEVICE_DEVS7) $(DEVICE_DEVS8) $(DEVICE_DEVS9) \
  678.   $(DEVICE_DEVS10) $(DEVICE_DEVS11) $(DEVICE_DEVS12) $(DEVICE_DEVS13) \
  679.   $(DEVICE_DEVS14) $(DEVICE_DEVS15)
  680.  
  681. devs_tr=devs.tr$(CONFIG)
  682. $(devs_tr): $(GS_MAK) $(MAKEFILE) $(ECHOGS_XE)
  683.     $(EXP)echogs -w $(devs_tr) - -include $(PLATFORM).dev
  684.     $(EXP)echogs -a $(devs_tr) - $(FEATURE_DEVS)
  685.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS)
  686.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS1)
  687.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS2)
  688.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS3)
  689.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS4)
  690.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS5)
  691.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS6)
  692.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS7)
  693.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS8)
  694.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS9)
  695.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS10)
  696.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS11)
  697.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS12)
  698.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS13)
  699.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS14)
  700.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS15)
  701.  
  702. # GCONFIG_EXTRAS can be set on the command line.
  703. # Note that it consists of arguments for echogs, i.e.,
  704. # it isn't just literal text.
  705. GCONFIG_EXTRAS=
  706.  
  707. ld_tr=ld$(CONFIG).tr
  708. $(gconfig_h) $(ld_tr) lib.tr: \
  709.   $(GS_MAK) $(MAKEFILE) version.mak $(GENCONF_XE) $(ECHOGS_XE) $(devs_tr) $(DEVS_ALL) libcore.dev
  710.     $(EXP)genconf $(devs_tr) libcore.dev -h $(gconfig_h) $(CONFILES)
  711.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_LIB_DEFAULT -x 2022 $(GS_LIB_DEFAULT) -x 22
  712.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u SEARCH_HERE_FIRST -s $(SEARCH_HERE_FIRST)
  713.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_DOCDIR -x 2022 $(GS_DOCDIR) -x 22
  714.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_INIT -x 2022 $(GS_INIT) -x 22
  715.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISION -s $(GS_REVISION)
  716.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISIONDATE -s $(GS_REVISIONDATE)
  717.     $(EXP)echogs -a $(gconfig_h) $(GCONFIG_EXTRAS)
  718.  
  719. ################################################################
  720. # The other platform-independent makefiles are concatenated
  721. # (or included) after this one:
  722. #    lib.mak
  723. #    int.mak
  724. #    jpeg.mak
  725. #    libpng.mak
  726. #    zlib.mak
  727. #    devs.mak
  728. ################################################################
  729. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  730. # This file is part of Aladdin Ghostscript.
  731. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  732. # or distributor accepts any responsibility for the consequences of using it,
  733. # or for whether it serves any particular purpose or works at all, unless he
  734. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  735. # License (the "License") for full details.
  736. # Every copy of Aladdin Ghostscript must include a copy of the License,
  737. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  738. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  739. # under certain conditions described in the License.  Among other things, the
  740. # License requires that the copyright notice and this notice be preserved on
  741. # all copies.
  742.  
  743. # (Platform-independent) makefile for graphics library and other support code.
  744. # See the end of gs.mak for where this fits into the build process.
  745.  
  746. # Define the name of this makefile.
  747. LIB_MAK=lib.mak
  748.  
  749. # Define the inter-dependencies of the .h files.
  750. # Since not all versions of `make' defer expansion of macros,
  751. # we must list these in bottom-to-top order.
  752.  
  753. # Generic files
  754.  
  755. arch_h=arch.h
  756. stdpre_h=stdpre.h
  757. std_h=std.h $(arch_h) $(stdpre_h)
  758.  
  759. # Platform interfaces
  760.  
  761. gp_h=gp.h
  762. gpcheck_h=gpcheck.h
  763.  
  764. # Configuration definitions
  765.  
  766. # gconfig*.h are generated dynamically.
  767. gconfig__h=gconfig_.h
  768. gconfigv_h=gconfigv.h
  769. gscdefs_h=gscdefs.h
  770.  
  771. # C library interfaces
  772.  
  773. # Because of variations in the "standard" header files between systems, and
  774. # because we must include std.h before any file that includes sys/types.h,
  775. # we define local include files named *_.h to substitute for <*.h>.
  776.  
  777. vmsmath_h=vmsmath.h
  778.  
  779. dos__h=dos_.h
  780. ctype__h=ctype_.h $(std_h)
  781. dirent__h=dirent_.h $(std_h) $(gconfig__h)
  782. errno__h=errno_.h $(std_h)
  783. malloc__h=malloc_.h $(std_h)
  784. math__h=math_.h $(std_h) $(vmsmath_h)
  785. memory__h=memory_.h $(std_h)
  786. stat__h=stat_.h $(std_h)
  787. stdio__h=stdio_.h $(std_h)
  788. string__h=string_.h $(std_h)
  789. time__h=time_.h $(std_h) $(gconfig__h)
  790. windows__h=windows_.h
  791.  
  792. # Miscellaneous
  793.  
  794. gdebug_h=gdebug.h
  795. gsalloc_h=gsalloc.h
  796. gsargs_h=gsargs.h
  797. gserror_h=gserror.h
  798. gserrors_h=gserrors.h
  799. gsexit_h=gsexit.h
  800. gsgc_h=gsgc.h
  801. gsio_h=gsio.h
  802. gsmdebug_h=gsmdebug.h
  803. gsmemory_h=gsmemory.h
  804. gsrefct_h=gsrefct.h
  805. gsstruct_h=gsstruct.h
  806. gstypes_h=gstypes.h
  807. gx_h=gx.h $(stdio__h) $(gdebug_h) $(gserror_h) $(gsio_h) $(gsmemory_h) $(gstypes_h)
  808.  
  809. GX=$(AK) $(gx_h)
  810. GXERR=$(GX) $(gserrors_h)
  811.  
  812. ###### Support
  813.  
  814. ### Include files
  815.  
  816. gsbitops_h=gsbitops.h
  817. gsbittab_h=gsbittab.h
  818. gsflip_h=gsflip.h
  819. gsuid_h=gsuid.h
  820. gsutil_h=gsutil.h
  821. gxarith_h=gxarith.h
  822. gxbitmap_h=gxbitmap.h $(gstypes_h)
  823. gxfarith_h=gxfarith.h $(gconfigv_h) $(gxarith_h)
  824. gxfixed_h=gxfixed.h
  825. gxobj_h=gxobj.h $(gxbitmap_h)
  826. # Out of order
  827. gxalloc_h=gxalloc.h $(gsalloc_h) $(gxobj_h)
  828.  
  829. ### Executable code
  830.  
  831. gsalloc.$(OBJ): gsalloc.c $(GX) $(memory__h) $(string__h) \
  832.   $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  833.  
  834. gsargs.$(OBJ): gsargs.c $(ctype__h) $(stdio__h) $(string__h)\
  835.  $(gsargs_h) $(gsexit_h) $(gsmemory_h)
  836.  
  837. gsbitops.$(OBJ): gsbitops.c $(AK) $(memory__h) $(stdio__h)\
  838.  $(gdebug_h) $(gsbitops_h) $(gstypes_h)
  839.  
  840. gsbittab.$(OBJ): gsbittab.c $(AK) $(stdpre_h) $(gsbittab_h)
  841.  
  842. # gsfemu is only used in FPU-less configurations, and currently only with gcc.
  843. # We thought using CCLEAF would produce smaller code, but it actually
  844. # produces larger code!
  845. gsfemu.$(OBJ): gsfemu.c $(AK) $(std_h)
  846.  
  847. # gsflip is not part of the standard configuration: it's rather large,
  848. # and no standard facility requires it.
  849. gsflip.$(OBJ): gsflip.c $(GX) $(gsbittab_h) $(gsflip_h)
  850.     $(CCLEAF) gsflip.c
  851.  
  852. gsmemory.$(OBJ): gsmemory.c $(GX) $(malloc__h) $(memory__h) \
  853.   $(gsmdebug_h) $(gsrefct_h) $(gsstruct_h)
  854.  
  855. gsmisc.$(OBJ): gsmisc.c $(GXERR) $(gconfigv_h) \
  856.   $(malloc__h) $(math__h) $(memory__h) $(gpcheck_h) $(gxfarith_h) $(gxfixed_h)
  857.  
  858. # gsnogc currently is only used in library-only configurations.
  859. gsnogc.$(OBJ): gsnogc.c $(GX)\
  860.  $(gsgc_h) $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  861.  
  862. gsutil.$(OBJ): gsutil.c $(AK) $(memory__h) $(string__h) $(gconfigv_h)\
  863.  $(gstypes_h) $(gsuid_h) $(gsutil_h)
  864.  
  865. ###### Low-level facilities and utilities
  866.  
  867. ### Include files
  868.  
  869. gdevbbox_h=gdevbbox.h
  870. gdevmem_h=gdevmem.h $(gsbitops_h)
  871. gdevmrop_h=gdevmrop.h
  872.  
  873. gsccode_h=gsccode.h
  874. gsccolor_h=gsccolor.h $(gsstruct_h)
  875. gscsel_h=gscsel.h
  876. gscolor1_h=gscolor1.h
  877. gscoord_h=gscoord.h
  878. gscpm_h=gscpm.h
  879. gsdevice_h=gsdevice.h
  880. gsfcmap_h=gsfcmap.h $(gsccode_h)
  881. gsfont_h=gsfont.h
  882. gshsb_h=gshsb.h
  883. gsht_h=gsht.h
  884. gsht1_h=gsht1.h $(gsht_h)
  885. gsiparam_h=gsiparam.h
  886. gsjconf_h=gsjconf.h $(std_h)
  887. gslib_h=gslib.h
  888. gslparam_h=gslparam.h
  889. gsmatrix_h=gsmatrix.h
  890. gspaint_h=gspaint.h
  891. gsparam_h=gsparam.h
  892. gspath2_h=gspath2.h
  893. gspenum_h=gspenum.h
  894. gsropt_h=gsropt.h
  895. gsxfont_h=gsxfont.h
  896. # Out of order
  897. gschar_h=gschar.h $(gsccode_h) $(gscpm_h)
  898. gscolor2_h=gscolor2.h $(gsccolor_h) $(gsuid_h) $(gxbitmap_h)
  899. gsimage_h=gsimage.h $(gsiparam_h)
  900. gsline_h=gsline.h $(gslparam_h)
  901. gspath_h=gspath.h $(gspenum_h)
  902. gsrop_h=gsrop.h $(gsropt_h)
  903.  
  904. gxbcache_h=gxbcache.h $(gxbitmap_h)
  905. gxchar_h=gxchar.h $(gschar_h)
  906. gxcindex_h=gxcindex.h
  907. gxcvalue_h=gxcvalue.h
  908. gxclio_h=gxclio.h
  909. gxclip2_h=gxclip2.h
  910. gxcolor2_h=gxcolor2.h $(gscolor2_h) $(gsrefct_h) $(gxbitmap_h)
  911. gxcoord_h=gxcoord.h $(gscoord_h)
  912. gxcpath_h=gxcpath.h
  913. gxdda_h=gxdda.h
  914. gxdevrop_h=gxdevrop.h
  915. gxdevmem_h=gxdevmem.h
  916. gxdither_h=gxdither.h
  917. gxfcache_h=gxfcache.h $(gsuid_h) $(gsxfont_h) $(gxbcache_h)
  918. gxfcmap_h=gxfcmap.h $(gsfcmap_h) $(gsuid_h)
  919. gxfont_h=gxfont.h $(gsfont_h) $(gsuid_h) $(gsstruct_h)
  920. gxfont0_h=gxfont0.h
  921. gxfrac_h=gxfrac.h
  922. gxhttile_h=gxhttile.h
  923. gxhttype_h=gxhttype.h
  924. gxiodev_h=gxiodev.h $(stat__h)
  925. gxline_h=gxline.h $(gslparam_h)
  926. gxlum_h=gxlum.h
  927. gxmatrix_h=gxmatrix.h $(gsmatrix_h)
  928. gxpaint_h=gxpaint.h
  929. gxpath_h=gxpath.h $(gscpm_h) $(gslparam_h) $(gspenum_h)
  930. gxpcache_h=gxpcache.h
  931. gxpcolor_h=gxpcolor.h $(gxpcache_h)
  932. gxsample_h=gxsample.h
  933. gxstate_h=gxstate.h
  934. gxtmap_h=gxtmap.h
  935. gxxfont_h=gxxfont.h $(gsccode_h) $(gsmatrix_h) $(gsuid_h) $(gsxfont_h)
  936. # The following are out of order because they include other files.
  937. gsdcolor_h=gsdcolor.h $(gsccolor_h) $(gxarith_h) $(gxbitmap_h) $(gxcindex_h) $(gxhttile_h)
  938. gxdcolor_h=gxdcolor.h $(gscsel_h) $(gsdcolor_h) $(gsropt_h) $(gsstruct_h)
  939. gxdevice_h=gxdevice.h $(gsdcolor_h) $(gsiparam_h) $(gsmatrix_h) \
  940.   $(gsropt_h) $(gsstruct_h) $(gsxfont_h) \
  941.   $(gxbitmap_h) $(gxcindex_h) $(gxcvalue_h) $(gxfixed_h)
  942. gxdht_h=gxdht.h $(gsrefct_h) $(gxarith_h) $(gxhttype_h)
  943. gxctable_h=gxctable.h $(gxfixed_h) $(gxfrac_h)
  944. gscie_h=gscie.h $(gsrefct_h) $(gxctable_h)
  945. gscsepr_h=gscsepr.h
  946. gscspace_h=gscspace.h
  947. gxdcconv_h=gxdcconv.h $(gxfrac_h)
  948. gxfmap_h=gxfmap.h $(gsrefct_h) $(gxfrac_h) $(gxtmap_h)
  949. gxistate_h=gxistate.h $(gscsel_h) $(gsropt_h) $(gxcvalue_h) $(gxfixed_h) $(gxline_h) $(gxmatrix_h) $(gxtmap_h)
  950. gxclist_h=gxclist.h $(gscspace_h) $(gxbcache_h) $(gxclio_h) $(gxistate_h)
  951. gxcmap_h=gxcmap.h $(gscsel_h) $(gxcvalue_h) $(gxfmap_h)
  952. gxcspace_h=gxcspace.h $(gscspace_h) $(gsccolor_h) $(gscsel_h) $(gsstruct_h) $(gxfrac_h)
  953. gxht_h=gxht.h $(gsht1_h) $(gsrefct_h) $(gxhttype_h) $(gxtmap_h)
  954. gscolor_h=gscolor.h $(gxtmap_h)
  955. gsstate_h=gsstate.h $(gscolor_h) $(gscsel_h) $(gsdevice_h) $(gsht_h) $(gsline_h)
  956.  
  957. gzacpath_h=gzacpath.h
  958. gzcpath_h=gzcpath.h $(gxcpath_h)
  959. gzht_h=gzht.h $(gscsel_h) $(gxdht_h) $(gxfmap_h) $(gxht_h) $(gxhttile_h)
  960. gzline_h=gzline.h $(gxline_h)
  961. gzpath_h=gzpath.h $(gsstruct_h) $(gxpath_h)
  962. gzstate_h=gzstate.h $(gscpm_h) $(gsstate_h) $(gxdcolor_h) $(gxistate_h) $(gxstate_h)
  963.  
  964. gdevprn_h=gdevprn.h $(memory__h) $(string__h) $(gx_h) \
  965.   $(gserrors_h) $(gsmatrix_h) $(gsparam_h) $(gsutil_h) \
  966.   $(gxdevice_h) $(gxdevmem_h) $(gxclist_h)
  967.  
  968. sa85x_h=sa85x.h
  969. sbtx_h=sbtx.h
  970. scanchar_h=scanchar.h
  971. scommon_h=scommon.h $(gsmemory_h) $(gstypes_h) $(gsstruct_h)
  972. sdct_h=sdct.h
  973. shc_h=shc.h $(gsbittab_h)
  974. siscale_h=siscale.h $(gconfigv_h)
  975. sjpeg_h=sjpeg.h
  976. slzwx_h=slzwx.h
  977. spcxx_h=spcxx.h
  978. spdiffx_h=spdiffx.h
  979. spngpx_h=spngpx.h
  980. srlx_h=srlx.h
  981. sstring_h=sstring.h
  982. strimpl_h=strimpl.h $(scommon_h) $(gstypes_h) $(gsstruct_h)
  983. szlibx_h=szlibx.h
  984. # Out of order
  985. scf_h=scf.h $(shc_h)
  986. scfx_h=scfx.h $(shc_h)
  987. gximage_h=gximage.h $(gsiparam_h) $(gxcspace_h) $(gxdda_h) $(gxsample_h)\
  988.  $(siscale_h) $(strimpl_h)
  989.  
  990. ### Executable code
  991.  
  992. # gconfig and gscdefs are handled specially.  Currently they go in psbase
  993. # rather than in libcore, which is clearly wrong.
  994. gconfig=gconfig$(CONFIG)
  995. $(gconfig).$(OBJ): gconf.c $(GX) \
  996.   $(gscdefs_h) $(gconfig_h) $(gxdevice_h) $(gxiodev_h) $(MAKEFILE)
  997.     $(RM_) gconfig.h
  998.     $(RM_) $(gconfig).c
  999.     $(CP_) $(gconfig_h) gconfig.h
  1000.     $(CP_) gconf.c $(gconfig).c
  1001.     $(CCC) $(gconfig).c
  1002.     $(RM_) gconfig.h
  1003.     $(RM_) $(gconfig).c
  1004.  
  1005. gscdefs=gscdefs$(CONFIG)
  1006. $(gscdefs).$(OBJ): gscdef.c $(stdpre_h) $(gscdefs_h) $(gconfig_h) $(MAKEFILE)
  1007.     $(RM_) gconfig.h
  1008.     $(RM_) $(gscdefs).c
  1009.     $(CP_) $(gconfig_h) gconfig.h
  1010.     $(CP_) gscdef.c $(gscdefs).c
  1011.     $(CCC) $(gscdefs).c
  1012.     $(RM_) gconfig.h
  1013.     $(RM_) $(gscdefs).c
  1014.  
  1015. gxacpath.$(OBJ): gxacpath.c $(GXERR) \
  1016.   $(gsdcolor_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1017.   $(gxdevice_h) $(gxfixed_h) $(gxpaint_h) \
  1018.   $(gzacpath_h) $(gzcpath_h) $(gzpath_h)
  1019.  
  1020. gxbcache.$(OBJ): gxbcache.c $(GX) $(memory__h) \
  1021.   $(gsmdebug_h) $(gxbcache_h)
  1022.  
  1023. gxccache.$(OBJ): gxccache.c $(GXERR) $(gpcheck_h) \
  1024.   $(gscspace_h) $(gsimage_h) $(gsstruct_h) \
  1025.   $(gxchar_h) $(gxdevice_h) $(gxdevmem_h) $(gxfcache_h) \
  1026.   $(gxfixed_h) $(gxfont_h) $(gxhttile_h) $(gxmatrix_h) $(gxxfont_h) \
  1027.   $(gzstate_h) $(gzpath_h) $(gzcpath_h) 
  1028.  
  1029. gxccman.$(OBJ): gxccman.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1030.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h) $(gxfixed_h) $(gxmatrix_h)\
  1031.  $(gxdevice_h) $(gxdevmem_h) $(gxfont_h) $(gxfcache_h) $(gxchar_h)\
  1032.  $(gxxfont_h) $(gzstate_h) $(gzpath_h)
  1033.  
  1034. gxcht.$(OBJ): gxcht.c $(GXERR) $(memory__h)\
  1035.  $(gsutil_h)\
  1036.  $(gxcmap_h) $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h)\
  1037.  $(gxmatrix_h) $(gzht_h)
  1038.  
  1039. gxcmap.$(OBJ): gxcmap.c $(GXERR) \
  1040.   $(gsccolor_h) \
  1041.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gxdither_h) \
  1042.   $(gxfarith_h) $(gxfrac_h) $(gxlum_h) $(gzstate_h)
  1043.  
  1044. gxcpath.$(OBJ): gxcpath.c $(GXERR)\
  1045.  $(gscoord_h) $(gsstruct_h) $(gsutil_h)\
  1046.  $(gxdevice_h) $(gxfixed_h) $(gzpath_h) $(gzcpath_h)
  1047.  
  1048. gxdcconv.$(OBJ): gxdcconv.c $(GX) \
  1049.   $(gsdcolor_h) $(gxcmap_h) $(gxdcconv_h) $(gxdevice_h) \
  1050.   $(gxfarith_h) $(gxistate_h) $(gxlum_h)
  1051.  
  1052. gxdcolor.$(OBJ): gxdcolor.c $(GX) \
  1053.   $(gsbittab_h) $(gxdcolor_h) $(gxdevice_h)
  1054.  
  1055. gxdither.$(OBJ): gxdither.c $(GX) \
  1056.   $(gsstruct_h) $(gsdcolor_h) \
  1057.   $(gxcmap_h) $(gxdevice_h) $(gxdither_h) $(gxlum_h) $(gzht_h)
  1058.  
  1059. gxfill.$(OBJ): gxfill.c $(GXERR) $(math__h) \
  1060.   $(gsstruct_h) \
  1061.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxhttile_h) \
  1062.   $(gxistate_h) $(gxpaint_h) \
  1063.   $(gzcpath_h) $(gzpath_h)
  1064.  
  1065. gxht.$(OBJ): gxht.c $(GXERR) $(memory__h)\
  1066.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h)\
  1067.  $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gzht_h)
  1068.  
  1069. gximage.$(OBJ): gximage.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1070.  $(gsccolor_h) $(gspaint_h) $(gsstruct_h)\
  1071.  $(gxfixed_h) $(gxfrac_h) $(gxarith_h) $(gxmatrix_h)\
  1072.  $(gxdevice_h) $(gzpath_h) $(gzstate_h)\
  1073.  $(gzcpath_h) $(gxdevmem_h) $(gximage_h) $(gdevmrop_h)
  1074.  
  1075. gximage0.$(OBJ): gximage0.c $(GXERR) $(memory__h)\
  1076.  $(gxcpath_h) $(gxdevice_h) $(gximage_h)
  1077.  
  1078. gximage1.$(OBJ): gximage1.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1079.  $(gdevmem_h) $(gsbittab_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1080.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1081.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1082.  $(gzht_h) $(gzpath_h)
  1083.  
  1084. gximage2.$(OBJ): gximage2.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1085.  $(gdevmem_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1086.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1087.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1088.  $(gzht_h) $(gzpath_h)
  1089.  
  1090. gxpaint.$(OBJ): gxpaint.c $(GX) \
  1091.   $(gxdevice_h) $(gxhttile_h) $(gxpaint_h) $(gxpath_h) $(gzstate_h)
  1092.  
  1093. gxpath.$(OBJ): gxpath.c $(GXERR) \
  1094.   $(gsstruct_h) $(gxfixed_h) $(gzpath_h)
  1095.  
  1096. gxpath2.$(OBJ): gxpath2.c $(GXERR) $(math__h) \
  1097.   $(gxfixed_h) $(gxarith_h) $(gzpath_h)
  1098.  
  1099. gxpcopy.$(OBJ): gxpcopy.c $(GXERR) $(math__h) $(gconfigv_h) \
  1100.   $(gxfarith_h) $(gxfixed_h) $(gzpath_h)
  1101.  
  1102. gxpdash.$(OBJ): gxpdash.c $(GX) $(math__h) \
  1103.   $(gscoord_h) $(gsline_h) $(gsmatrix_h) \
  1104.   $(gxfixed_h) $(gzline_h) $(gzpath_h)
  1105.  
  1106. gxpflat.$(OBJ): gxpflat.c $(GX)\
  1107.  $(gxarith_h) $(gxfixed_h) $(gzpath_h)
  1108.  
  1109. gxsample.$(OBJ): gxsample.c $(GX)\
  1110.  $(gxsample_h)
  1111.  
  1112. gxstroke.$(OBJ): gxstroke.c $(GXERR) $(math__h) $(gpcheck_h) \
  1113.   $(gscoord_h) $(gsdcolor_h) $(gsdevice_h) \
  1114.   $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) \
  1115.   $(gxhttile_h) $(gxistate_h) $(gxmatrix_h) $(gxpaint_h) \
  1116.   $(gzcpath_h) $(gzline_h) $(gzpath_h)
  1117.  
  1118. ###### Higher-level facilities
  1119.  
  1120. gschar.$(OBJ): gschar.c $(GXERR) $(memory__h) $(string__h)\
  1121.  $(gspath_h) $(gsstruct_h) \
  1122.  $(gxfixed_h) $(gxarith_h) $(gxmatrix_h) $(gxcoord_h) $(gxdevice_h) $(gxdevmem_h) \
  1123.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxfcache_h) $(gzpath_h) $(gzstate_h)
  1124.  
  1125. gscolor.$(OBJ): gscolor.c $(GXERR) \
  1126.   $(gsccolor_h) $(gsstruct_h) $(gsutil_h) \
  1127.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gzstate_h)
  1128.  
  1129. gscoord.$(OBJ): gscoord.c $(GXERR) $(math__h) \
  1130.   $(gsccode_h) $(gxcoord_h) $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) $(gxfont_h) \
  1131.   $(gxmatrix_h) $(gxpath_h) $(gzstate_h)
  1132.  
  1133. gsdevice.$(OBJ): gsdevice.c $(GXERR) $(memory__h)\
  1134.  $(gscdefs_h) $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstruct_h)\
  1135.  $(gxcmap_h) $(gxdevice_h) $(gxdevmem_h) $(gzstate_h)
  1136.  
  1137. gsdevmem.$(OBJ): gsdevmem.c $(GXERR) $(math__h) $(memory__h) \
  1138.   $(gxarith_h) $(gxdevice_h) $(gxdevmem_h)
  1139.  
  1140. gsdparam.$(OBJ): gsdparam.c $(GXERR) $(memory__h) $(string__h) \
  1141.   $(gsparam_h) $(gxdevice_h) $(gxfixed_h)
  1142.  
  1143. gsfont.$(OBJ): gsfont.c $(GXERR) $(memory__h)\
  1144.  $(gschar_h) $(gsstruct_h) \
  1145.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxfont_h) $(gxfcache_h)\
  1146.  $(gzstate_h)
  1147.  
  1148. gsht.$(OBJ): gsht.c $(GXERR) $(memory__h)\
  1149.  $(gsstruct_h) $(gsutil_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1150.  
  1151. gshtscr.$(OBJ): gshtscr.c $(GXERR) $(math__h) \
  1152.   $(gsstruct_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1153.  
  1154. gsimage.$(OBJ): gsimage.c $(GXERR) $(memory__h)\
  1155.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  1156.   $(gxarith_h) $(gxdevice_h) $(gzstate_h)
  1157.  
  1158. gsimpath.$(OBJ): gsimpath.c $(GXERR) \
  1159.   $(gsmatrix_h) $(gsstate_h) $(gspath_h)
  1160.  
  1161. gsinit.$(OBJ): gsinit.c $(memory__h) $(stdio__h) \
  1162.   $(gdebug_h) $(gp_h) $(gscdefs_h) $(gslib_h) $(gsmemory_h)
  1163.  
  1164. gsiodev.$(OBJ): gsiodev.c $(GXERR) $(errno__h) $(string__h) \
  1165.   $(gp_h) $(gsparam_h) $(gxiodev_h)
  1166.  
  1167. gsline.$(OBJ): gsline.c $(GXERR) $(math__h) $(memory__h)\
  1168.  $(gsline_h) $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gzline_h)
  1169.  
  1170. gsmatrix.$(OBJ): gsmatrix.c $(GXERR) $(math__h) \
  1171.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h)
  1172.  
  1173. gspaint.$(OBJ): gspaint.c $(GXERR) $(math__h) $(gpcheck_h)\
  1174.  $(gspaint_h) $(gspath_h) $(gsropt_h)\
  1175.  $(gxcpath_h) $(gxdevmem_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxpaint_h)\
  1176.  $(gzpath_h) $(gzstate_h)
  1177.  
  1178. gsparam.$(OBJ): gsparam.c $(GXERR) $(memory__h) $(string__h)\
  1179.  $(gsparam_h) $(gsstruct_h)
  1180.  
  1181. gspath.$(OBJ): gspath.c $(GXERR) \
  1182.   $(gscoord_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  1183.   $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1184.  
  1185. gsstate.$(OBJ): gsstate.c $(GXERR) $(memory__h)\
  1186.  $(gscie_h) $(gscolor2_h) $(gscoord_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1187.  $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxpcache_h) \
  1188.  $(gzstate_h) $(gzht_h) $(gzline_h) $(gzpath_h) $(gzcpath_h)
  1189.  
  1190. ###### The internal devices
  1191.  
  1192. ### The built-in device implementations:
  1193.  
  1194. # The bounding box device is not normally a free-standing device.
  1195. # To configure it as one for testing, change SETMOD to SETDEV, and also
  1196. # define TEST in gdevbbox.c.
  1197. bbox.dev: $(LIB_MAK) $(ECHOGS_XE) gdevbbox.$(OBJ)
  1198.     $(SETMOD) bbox gdevbbox.$(OBJ)
  1199.  
  1200. gdevbbox.$(OBJ): gdevbbox.c $(GXERR) $(math__h) $(memory__h) \
  1201.   $(gdevbbox_h) $(gsdevice_h) $(gsparam_h) \
  1202.   $(gxcpath_h) $(gxdevice_h) $(gxistate_h) $(gxpaint_h) $(gxpath_h)
  1203.  
  1204. gdevddrw.$(OBJ): gdevddrw.c $(GXERR) $(math__h) $(gpcheck_h) \
  1205.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h)
  1206.  
  1207. gdevdflt.$(OBJ): gdevdflt.c $(GXERR) $(gpcheck_h)\
  1208.  $(gsbittab_h) $(gsropt_h)\
  1209.  $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)
  1210.  
  1211. gdevnfwd.$(OBJ): gdevnfwd.c $(GX) \
  1212.   $(gxdevice_h)
  1213.  
  1214. # The render/RGB device is only here as an example, but we can configure
  1215. # it as a real device for testing.
  1216. rrgb.dev: $(LIB_MAK) $(ECHOGS_XE) gdevrrgb.$(OBJ) page.dev
  1217.     $(SETPDEV) rrgb gdevrrgb.$(OBJ)
  1218.  
  1219. gdevrrgb.$(OBJ): gdevrrgb.c $(AK)\
  1220.  $(gdevprn_h)
  1221.  
  1222. ### The memory devices:
  1223.  
  1224. gdevabuf.$(OBJ): gdevabuf.c $(GXERR) $(memory__h)\
  1225.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1226.  
  1227. gdevmem.$(OBJ): gdevmem.c $(GXERR) $(memory__h)\
  1228.  $(gsstruct_h) $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1229.  
  1230. gdevm1.$(OBJ): gdevm1.c $(GX) $(memory__h) $(gsrop_h)\
  1231.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1232.  
  1233. gdevm2.$(OBJ): gdevm2.c $(GX) $(memory__h)\
  1234.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1235.  
  1236. gdevm4.$(OBJ): gdevm4.c $(GX) $(memory__h)\
  1237.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1238.  
  1239. gdevm8.$(OBJ): gdevm8.c $(GX) $(memory__h)\
  1240.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1241.  
  1242. gdevm16.$(OBJ): gdevm16.c $(GX) $(memory__h)\
  1243.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1244.  
  1245. gdevm24.$(OBJ): gdevm24.c $(GX) $(memory__h)\
  1246.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1247.  
  1248. gdevm32.$(OBJ): gdevm32.c $(GX) $(memory__h)\
  1249.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1250.  
  1251. gdevmpla.$(OBJ): gdevmpla.c $(GX) $(memory__h)\
  1252.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1253.  
  1254. # Create a pseudo-"feature" for the entire graphics library.
  1255.  
  1256. LIB1s=gsalloc.$(OBJ) gsbitops.$(OBJ) gsbittab.$(OBJ)
  1257. LIB2s=gschar.$(OBJ) gscolor.$(OBJ) gscoord.$(OBJ) gsdevice.$(OBJ) gsdevmem.$(OBJ)
  1258. LIB3s=gsdparam.$(OBJ) gsfont.$(OBJ) gsht.$(OBJ) gshtscr.$(OBJ)
  1259. LIB4s=gsimage.$(OBJ) gsimpath.$(OBJ) gsinit.$(OBJ) gsiodev.$(OBJ)
  1260. LIB5s=gsline.$(OBJ) gsmatrix.$(OBJ) gsmemory.$(OBJ) gsmisc.$(OBJ)
  1261. LIB6s=gspaint.$(OBJ) gsparam.$(OBJ) gspath.$(OBJ) gsstate.$(OBJ) gsutil.$(OBJ)
  1262. LIB1x=gxacpath.$(OBJ) gxbcache.$(OBJ)
  1263. LIB2x=gxccache.$(OBJ) gxccman.$(OBJ) gxcht.$(OBJ) gxcmap.$(OBJ) gxcpath.$(OBJ)
  1264. LIB3x=gxdcconv.$(OBJ) gxdcolor.$(OBJ) gxdither.$(OBJ) gxfill.$(OBJ) gxht.$(OBJ)
  1265. LIB4x=gximage.$(OBJ) gximage0.$(OBJ) gximage1.$(OBJ) gximage2.$(OBJ)
  1266. LIB5x=gxpaint.$(OBJ) gxpath.$(OBJ) gxpath2.$(OBJ) gxpcopy.$(OBJ)
  1267. LIB6x=gxpdash.$(OBJ) gxpflat.$(OBJ) gxsample.$(OBJ) gxstroke.$(OBJ)
  1268. LIB1d=gdevabuf.$(OBJ) gdevddrw.$(OBJ) gdevdflt.$(OBJ) gdevnfwd.$(OBJ)
  1269. LIB2d=gdevmem.$(OBJ) gdevm1.$(OBJ) gdevm2.$(OBJ) gdevm4.$(OBJ) gdevm8.$(OBJ)
  1270. LIB3d=gdevm16.$(OBJ) gdevm24.$(OBJ) gdevm32.$(OBJ) gdevmpla.$(OBJ)
  1271. LIBs=$(LIB1s) $(LIB2s) $(LIB3s) $(LIB4s) $(LIB5s) $(LIB6s)
  1272. LIBx=$(LIB1x) $(LIB2x) $(LIB3x) $(LIB4x) $(LIB5x) $(LIB6x)
  1273. LIBd=$(LIB1d) $(LIB2d) $(LIB3d)
  1274. LIB_ALL=$(LIBs) $(LIBx) $(LIBd)
  1275. libs.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBs)
  1276.     $(EXP)echogs -w libs.dev $(LIB1s)
  1277.     $(EXP)echogs -a libs.dev $(LIB2s)
  1278.     $(EXP)echogs -a libs.dev $(LIB3s)
  1279.     $(EXP)echogs -a libs.dev $(LIB4s)
  1280.     $(EXP)echogs -a libs.dev $(LIB5s)
  1281.     $(EXP)echogs -a libs.dev $(LIB6s)
  1282.     $(ADDMOD) libs -init gscolor
  1283.  
  1284. libx.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBx)
  1285.     $(EXP)echogs -w libx.dev $(LIB1x)
  1286.     $(EXP)echogs -a libx.dev $(LIB2x)
  1287.     $(EXP)echogs -a libx.dev $(LIB3x)
  1288.     $(EXP)echogs -a libx.dev $(LIB4x)
  1289.     $(EXP)echogs -a libx.dev $(LIB5x)
  1290.     $(EXP)echogs -a libx.dev $(LIB6x)
  1291.     $(ADDMOD) libx -init gximage1 gximage2
  1292.  
  1293. libd.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBd)
  1294.     $(EXP)echogs -w libd.dev $(LIB1d)
  1295.     $(EXP)echogs -a libd.dev $(LIB2d)
  1296.     $(EXP)echogs -a libd.dev $(LIB3d)
  1297.  
  1298. # roplib shouldn't be required....
  1299. libcore.dev: $(LIB_MAK) $(ECHOGS_XE)\
  1300.   libs.dev libx.dev libd.dev iscale.dev roplib.dev
  1301.     $(SETMOD) libcore
  1302.     $(ADDMOD) libcore -dev nullpage
  1303.     $(ADDMOD) libcore -include libs libx libd iscale roplib
  1304.  
  1305. # ---------------- Stream support ---------------- #
  1306. # Currently the only thing in the library that uses this is clists.
  1307.  
  1308. stream_h=stream.h $(scommon_h)
  1309.  
  1310. stream.$(OBJ): stream.c $(AK) $(stdio__h) $(memory__h) \
  1311.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1312.  
  1313. # ---------------- File streams ---------------- #
  1314. # Currently only the high-level drivers use these, but more drivers will
  1315. # probably use them eventually.
  1316.  
  1317. sfile_=sfx$(FILE_IMPLEMENTATION).$(OBJ)
  1318. sfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(sfile_)
  1319.     $(SETMOD) sfile $(sfile_)
  1320.  
  1321. sfxstdio.$(OBJ): sfxstdio.c $(AK) $(stdio__h) $(memory__h) \
  1322.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1323.  
  1324. sfxfd.$(OBJ): sfxfd.c $(AK) $(stdio__h) $(errno__h) $(memory__h) \
  1325.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1326.  
  1327. sfxboth.$(OBJ): sfxboth.c sfxstdio.c sfxfd.c
  1328.  
  1329. # ---------------- CCITTFax filters ---------------- #
  1330. # These are used by clists, some drivers, and Level 2 in general.
  1331.  
  1332. cfe_=scfe.$(OBJ) scfetab.$(OBJ) shc.$(OBJ)
  1333. cfe.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfe_)
  1334.     $(SETMOD) cfe $(cfe_)
  1335.  
  1336. scfe.$(OBJ): scfe.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1337.   $(scf_h) $(strimpl_h) $(scfx_h)
  1338.  
  1339. scfetab.$(OBJ): scfetab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1340.  
  1341. shc.$(OBJ): shc.c $(AK) $(std_h) $(scommon_h) $(shc_h)
  1342.  
  1343. cfd_=scfd.$(OBJ) scfdtab.$(OBJ)
  1344. cfd.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfd_)
  1345.     $(SETMOD) cfd $(cfd_)
  1346.  
  1347. scfd.$(OBJ): scfd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1348.   $(scf_h) $(strimpl_h) $(scfx_h)
  1349.  
  1350. scfdtab.$(OBJ): scfdtab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1351.  
  1352. # ---------------- DCT (JPEG) filters ---------------- #
  1353. # These are used by Level 2, and by the JPEG-writing driver.
  1354.  
  1355. # Common code
  1356.  
  1357. sdctc_=sdctc.$(OBJ) sjpegc.$(OBJ)
  1358.  
  1359. sdctc.$(OBJ): sdctc.c $(AK) $(stdio__h)\
  1360.  $(sdct_h) $(strimpl_h)\
  1361.  jpeglib.h
  1362.  
  1363. sjpegc.$(OBJ): sjpegc.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1364.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1365.  jerror.h jpeglib.h
  1366.  
  1367. # Encoding (compression)
  1368.  
  1369. sdcte_=$(sdctc_) sdcte.$(OBJ) sjpege.$(OBJ)
  1370. sdcte.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdcte_) jpege.dev
  1371.     $(SETMOD) sdcte $(sdcte_)
  1372.     $(ADDMOD) sdcte -include jpege
  1373.  
  1374. sdcte.$(OBJ): sdcte.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1375.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1376.   jerror.h jpeglib.h
  1377.  
  1378. sjpege.$(OBJ): sjpege.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1379.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1380.  jerror.h jpeglib.h
  1381.  
  1382. # Decoding (decompression)
  1383.  
  1384. sdctd_=$(sdctc_) sdctd.$(OBJ) sjpegd.$(OBJ)
  1385. sdctd.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdctd_) jpegd.dev
  1386.     $(SETMOD) sdctd $(sdctd_)
  1387.     $(ADDMOD) sdctd -include jpegd
  1388.  
  1389. sdctd.$(OBJ): sdctd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1390.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1391.   jerror.h jpeglib.h
  1392.  
  1393. sjpegd.$(OBJ): sjpegd.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1394.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h)\
  1395.  jerror.h jpeglib.h
  1396.  
  1397. # ---------------- LZW filters ---------------- #
  1398. # These are used by Level 2 in general.
  1399.  
  1400. slzwe_=slzwce
  1401. #slzwe_=slzwe
  1402. lzwe_=$(slzwe_).$(OBJ) slzwc.$(OBJ)
  1403. lzwe.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwe_)
  1404.     $(SETMOD) lzwe $(lzwe_)
  1405.  
  1406. # We need slzwe.dev as a synonym for lzwe.dev for BAND_LIST_STORAGE = memory.
  1407. slzwe.dev: lzwe.dev
  1408.     $(CP_) lzwe.dev slzwe.dev
  1409.  
  1410. slzwce.$(OBJ): slzwce.c $(AK) $(stdio__h) $(gdebug_h)\
  1411.   $(slzwx_h) $(strimpl_h)
  1412.  
  1413. slzwe.$(OBJ): slzwe.c $(AK) $(stdio__h) $(gdebug_h)\
  1414.   $(slzwx_h) $(strimpl_h)
  1415.  
  1416. slzwc.$(OBJ): slzwc.c $(AK) $(std_h)\
  1417.   $(slzwx_h) $(strimpl_h)
  1418.  
  1419. lzwd_=slzwd.$(OBJ) slzwc.$(OBJ)
  1420. lzwd.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwd_)
  1421.     $(SETMOD) lzwd $(lzwd_)
  1422.  
  1423. # We need slzwd.dev as a synonym for lzwd.dev for BAND_LIST_STORAGE = memory.
  1424. slzwd.dev: lzwd.dev
  1425.     $(CP_) lzwd.dev slzwd.dev
  1426.  
  1427. slzwd.$(OBJ): slzwd.c $(AK) $(stdio__h) $(gdebug_h)\
  1428.   $(slzwx_h) $(strimpl_h)
  1429.  
  1430. # ---------------- PCX decoding filter ---------------- #
  1431. # This is an adhoc filter not used by anything in the standard configuration.
  1432.  
  1433. pcxd_=spcxd.$(OBJ)
  1434. pcxd.dev: $(LIB_MAK) $(ECHOGS_XE) $(pcxd_)
  1435.     $(SETMOD) pcxd $(pcxd_)
  1436.  
  1437. spcxd.$(OBJ): spcxd.c $(AK) $(stdio__h) $(memory__h) \
  1438.   $(spcxx_h) $(strimpl_h)
  1439.  
  1440. # ---------------- Pixel-difference filters ---------------- #
  1441. # The Predictor facility of the LZW and Flate filters uses these.
  1442.  
  1443. pdiff_=spdiff.$(OBJ)
  1444. pdiff.dev: $(LIB_MAK) $(ECHOGS_XE) $(pdiff_)
  1445.     $(SETMOD) pdiff $(pdiff_)
  1446.  
  1447. spdiff.$(OBJ): spdiff.c $(AK) $(stdio__h)\
  1448.  $(spdiffx_h) $(strimpl_h)
  1449.  
  1450. # ---------------- PNG pixel prediction filters ---------------- #
  1451. # The Predictor facility of the LZW and Flate filters uses these.
  1452.  
  1453. pngp_=spngp.$(OBJ)
  1454. pngp.dev: $(LIB_MAK) $(ECHOGS_XE) $(pngp_)
  1455.     $(SETMOD) pngp $(pngp_)
  1456.  
  1457. spngp.$(OBJ): spngp.c $(AK) $(memory__h)\
  1458.   $(spngpx_h) $(strimpl_h)
  1459.  
  1460. # ---------------- RunLength filters ---------------- #
  1461. # These are used by clists and also by Level 2 in general.
  1462.  
  1463. rle_=srle.$(OBJ)
  1464. rle.dev: $(LIB_MAK) $(ECHOGS_XE) $(rle_)
  1465.     $(SETMOD) rle $(rle_)
  1466.  
  1467. srle.$(OBJ): srle.c $(AK) $(stdio__h) $(memory__h) \
  1468.   $(srlx_h) $(strimpl_h)
  1469.  
  1470. rld_=srld.$(OBJ)
  1471. rld.dev: $(LIB_MAK) $(ECHOGS_XE) $(rld_)
  1472.     $(SETMOD) rld $(rld_)
  1473.  
  1474. srld.$(OBJ): srld.c $(AK) $(stdio__h) $(memory__h) \
  1475.   $(srlx_h) $(strimpl_h)
  1476.  
  1477. # ---------------- String encoding/decoding filters ---------------- #
  1478. # These are used by the PostScript and PDF writers, and also by the
  1479. # PostScript interpreter.
  1480.  
  1481. scantab.$(OBJ): scantab.c $(AK) $(stdpre_h)\
  1482.  $(scanchar_h) $(scommon_h)
  1483.  
  1484. sfilter2.$(OBJ): sfilter2.c $(AK) $(memory__h) $(stdio__h)\
  1485.  $(sa85x_h) $(scanchar_h) $(sbtx_h) $(strimpl_h)
  1486.  
  1487. sstring.$(OBJ): sstring.c $(AK) $(stdio__h) $(memory__h) $(string__h)\
  1488.  $(scanchar_h) $(sstring_h) $(strimpl_h)
  1489.  
  1490. # ---------------- zlib filters ---------------- #
  1491. # These are used by clists and are also available as filters.
  1492.  
  1493. szlibc_=szlibc.$(OBJ)
  1494.  
  1495. szlibc.$(OBJ): szlibc.c $(AK) $(std_h) \
  1496.   $(gsmemory_h) $(gsstruct_h) $(gstypes_h) $(strimpl_h) $(szlibx_h)
  1497.     $(CCCZ) szlibc.c
  1498.  
  1499. szlibe_=$(szlibc_) szlibe.$(OBJ)
  1500. szlibe.dev: $(LIB_MAK) $(ECHOGS_XE) zlibe.dev $(szlibe_)
  1501.     $(SETMOD) szlibe $(szlibe_)
  1502.     $(ADDMOD) szlibe -include zlibe
  1503.  
  1504. szlibe.$(OBJ): szlibe.c $(AK) $(std_h) \
  1505.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1506.     $(CCCZ) szlibe.c
  1507.  
  1508. szlibd_=$(szlibc_) szlibd.$(OBJ)
  1509. szlibd.dev: $(LIB_MAK) $(ECHOGS_XE) zlibd.dev $(szlibd_)
  1510.     $(SETMOD) szlibd $(szlibd_)
  1511.     $(ADDMOD) szlibd -include zlibd
  1512.  
  1513. szlibd.$(OBJ): szlibd.c $(AK) $(std_h) \
  1514.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1515.     $(CCCZ) szlibd.c
  1516.  
  1517. # ---------------- Command lists ---------------- #
  1518.  
  1519. gxcldev_h=gxcldev.h $(gxclist_h) $(gsropt_h) $(gxht_h) $(gxtmap_h) $(gxdht_h)\
  1520.   $(strimpl_h) $(scfx_h) $(srlx_h)
  1521. gxclpage_h=gxclpage.h $(gxclio_h)
  1522. gxclpath_h=gxclpath.h $(gxfixed_h)
  1523.  
  1524. # Command list package.  Currently the higher-level facilities are required,
  1525. # but eventually they will be optional.
  1526. clist.dev: $(LIB_MAK) $(ECHOGS_XE) clbase.dev clpath.dev
  1527.     $(SETMOD) clist -include clbase clpath
  1528.  
  1529. # Base command list facility.
  1530. clbase1_=gxclist.$(OBJ) gxclbits.$(OBJ) gxclpage.$(OBJ)
  1531. clbase2_=gxclread.$(OBJ) gxclrect.$(OBJ) stream.$(OBJ)
  1532. clbase_=$(clbase1_) $(clbase2_)
  1533. clbase.dev: $(LIB_MAK) $(ECHOGS_XE) $(clbase_) cl$(BAND_LIST_STORAGE).dev \
  1534.   cfe.dev cfd.dev rle.dev rld.dev
  1535.     $(SETMOD) clbase $(clbase1_)
  1536.     $(ADDMOD) clbase -obj $(clbase2_)
  1537.     $(ADDMOD) clbase -include cl$(BAND_LIST_STORAGE) cfe cfd rle rld
  1538.  
  1539. gdevht_h=gdevht.h $(gzht_h)
  1540.  
  1541. gdevht.$(OBJ): gdevht.c $(GXERR) \
  1542.   $(gdevht_h) $(gxdcconv_h) $(gxdcolor_h) $(gxdevice_h) $(gxdither_h)
  1543.  
  1544. gxclist.$(OBJ): gxclist.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1545.  $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1546.  
  1547. gxclbits.$(OBJ): gxclbits.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1548.  $(gsbitops_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h) $(gxfmap_h)
  1549.  
  1550. gxclpage.$(OBJ): gxclpage.c $(AK)\
  1551.  $(gdevprn_h) $(gxcldev_h) $(gxclpage_h)
  1552.  
  1553. # (gxclread shouldn't need gxclpath.h)
  1554. gxclread.$(OBJ): gxclread.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1555.  $(gdevht_h)\
  1556.  $(gsbitops_h) $(gscoord_h) $(gsdevice_h) $(gsstate_h)\
  1557.  $(gxcldev_h) $(gxclpath_h) $(gxcmap_h) $(gxcspace_h) $(gxdcolor_h)\
  1558.  $(gxdevice_h) $(gxdevmem_h)\
  1559.  $(gxhttile_h) $(gxpaint_h) $(gzacpath_h) $(gzcpath_h) $(gzpath_h)\
  1560.  $(stream_h) $(strimpl_h)
  1561.  
  1562. gxclrect.$(OBJ): gxclrect.c $(GXERR)\
  1563.  $(gsutil_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1564.  
  1565. # Higher-level command list facilities.
  1566. clpath_=gxclimag.$(OBJ) gxclpath.$(OBJ)
  1567. clpath.dev: $(LIB_MAK) $(ECHOGS_XE) $(clpath_) psl2cs.dev
  1568.     $(SETMOD) clpath $(clpath_)
  1569.     $(ADDMOD) clpath -include psl2cs
  1570.     $(ADDMOD) clpath -init climag clpath
  1571.  
  1572. gxclimag.$(OBJ): gxclimag.c $(GXERR) $(math__h) $(memory__h)\
  1573.  $(gscspace_h)\
  1574.  $(gxarith_h) $(gxcldev_h) $(gxclpath_h) $(gxdevice_h) $(gxdevmem_h)\
  1575.  $(gxfmap_h)\
  1576.  $(siscale_h) $(strimpl_h)
  1577.  
  1578. gxclpath.$(OBJ): gxclpath.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1579.  $(gxcldev_h) $(gxclpath_h) $(gxcolor2_h) $(gxdevice_h) $(gxdevmem_h)\
  1580.  $(gxpaint_h) \
  1581.  $(gzcpath_h) $(gzpath_h)
  1582.  
  1583. # Implement band lists on files.
  1584.  
  1585. clfile_=gxclfile.$(OBJ)
  1586. clfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(clfile_)
  1587.     $(SETMOD) clfile $(clfile_)
  1588.  
  1589. gxclfile.$(OBJ): gxclfile.c $(stdio__h) $(string__h) \
  1590.   $(gp_h) $(gsmemory_h) $(gserror_h) $(gserrors_h) $(gxclio_h)
  1591.  
  1592. # Implement band lists in memory (RAM).
  1593.  
  1594. clmemory_=gxclmem.$(OBJ) gxcl$(BAND_LIST_COMPRESSOR).$(OBJ)
  1595. clmemory.dev: $(LIB_MAK) $(ECHOGS_XE) $(clmemory_) s$(BAND_LIST_COMPRESSOR)e.dev s$(BAND_LIST_COMPRESSOR)d.dev
  1596.     $(SETMOD) clmemory $(clmemory_)
  1597.     $(ADDMOD) clmemory -include s$(BAND_LIST_COMPRESSOR)e s$(BAND_LIST_COMPRESSOR)d
  1598.     $(ADDMOD) clmemory -init cl_$(BAND_LIST_COMPRESSOR)
  1599.  
  1600. gxclmem_h=gxclmem.h $(gxclio_h) $(strimpl_h)
  1601.  
  1602. gxclmem.$(OBJ): gxclmem.c $(GXERR) $(LIB_MAK) $(memory__h) \
  1603.   $(gxclmem_h)
  1604.  
  1605. # Implement the compression method for RAM-based band lists.
  1606.  
  1607. gxcllzw.$(OBJ): gxcllzw.c $(std_h)\
  1608.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(slzwx_h)
  1609.  
  1610. gxclzlib.$(OBJ): gxclzlib.c $(std_h)\
  1611.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(szlibx_h)
  1612.     $(CCCZ) gxclzlib.c
  1613.  
  1614. # ---------------- Page devices ---------------- #
  1615. # We include this here, rather than in devs.mak, because it is more like
  1616. # a feature than a simple device.
  1617.  
  1618. page_=gdevprn.$(OBJ)
  1619. page.dev: $(LIB_MAK) $(ECHOGS_XE) $(page_) clist.dev
  1620.     $(SETMOD) page $(page_)
  1621.     $(ADDMOD) page -include clist
  1622.  
  1623. gdevprn.$(OBJ): gdevprn.c $(ctype__h) \
  1624.   $(gdevprn_h) $(gp_h) $(gsparam_h) $(gxclio_h)
  1625.  
  1626. # ---------------- Vector devices ---------------- #
  1627. # We include this here for the same reasons as page.dev.
  1628.  
  1629. gdevvec_h=gdevvec.h $(gdevbbox_h) $(gsropt_h) $(gxdevice_h) $(gxistate_h) $(stream_h)
  1630.  
  1631. vector_=gdevvec.$(OBJ)
  1632. vector.dev: $(LIB_MAK) $(ECHOGS_XE) $(vector_) bbox.dev
  1633.     $(SETMOD) vector $(vector_)
  1634.     $(ADDMOD) vector -include bbox
  1635.  
  1636. gdevvec.$(OBJ): gdevvec.c $(GXERR) $(math__h) $(memory__h) $(string__h)\
  1637.  $(gdevvec_h) $(gp_h) $(gscspace_h) $(gsparam_h) $(gsutil_h)\
  1638.  $(gxdcolor_h) $(gxfixed_h) $(gxpaint_h)\
  1639.  $(gzcpath_h) $(gzpath_h)
  1640.  
  1641. # ---------------- Image scaling filter ---------------- #
  1642.  
  1643. iscale_=siscale.$(OBJ)
  1644. iscale.dev: $(LIB_MAK) $(ECHOGS_XE) $(iscale_)
  1645.     $(SETMOD) iscale $(iscale_)
  1646.  
  1647. siscale.$(OBJ): siscale.c $(AK) $(math__h) $(memory__h) $(stdio__h) \
  1648.   $(siscale_h) $(strimpl_h)
  1649.  
  1650. # ---------------- RasterOp et al ---------------- #
  1651. # Currently this module is required, but it should be optional.
  1652.  
  1653. roplib_=gdevmrop.$(OBJ) gsrop.$(OBJ) gsroptab.$(OBJ)
  1654. roplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(roplib_)
  1655.     $(SETMOD) roplib $(roplib_)
  1656.     $(ADDMOD) roplib -init roplib
  1657.  
  1658. gdevrun.$(OBJ): gdevrun.c $(GXERR) $(memory__h) \
  1659.   $(gxdevice_h) $(gxdevmem_h)
  1660.  
  1661. gdevmrop.$(OBJ): gdevmrop.c $(GXERR) $(memory__h) \
  1662.   $(gsbittab_h) $(gsropt_h) \
  1663.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxdevrop_h) \
  1664.   $(gdevmrop_h)
  1665.  
  1666. gsrop.$(OBJ): gsrop.c $(GXERR) \
  1667.   $(gsrop_h) $(gzstate_h)
  1668.  
  1669. gsroptab.$(OBJ): gsroptab.c $(stdpre_h) $(gsropt_h)
  1670.     $(CCLEAF) gsroptab.c
  1671.  
  1672. # -------- Composite (PostScript Type 0) font support -------- #
  1673.  
  1674. cmaplib_=gsfcmap.$(OBJ)
  1675. cmaplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmaplib_)
  1676.     $(SETMOD) cmaplib $(cmaplib_)
  1677.  
  1678. gsfcmap.$(OBJ): gsfcmap.c $(GXERR)\
  1679.  $(gsstruct_h) $(gxfcmap_h)
  1680.  
  1681. psf0lib_=gschar0.$(OBJ) gsfont0.$(OBJ)
  1682. psf0lib.dev: $(LIB_MAK) $(ECHOGS_XE) cmaplib.dev $(psf0lib_)
  1683.     $(SETMOD) psf0lib $(psf0lib_)
  1684.     $(ADDMOD) psf0lib -include cmaplib
  1685.  
  1686. gschar0.$(OBJ): gschar0.c $(GXERR) $(memory__h)\
  1687.  $(gsstruct_h) $(gxfixed_h) $(gxdevice_h) $(gxdevmem_h)\
  1688.  $(gsfcmap_h) $(gxfont_h) $(gxfont0_h) $(gxchar_h)
  1689.  
  1690. gsfont0.$(OBJ): gsfont0.c $(GXERR) $(memory__h)\
  1691.  $(gsmatrix_h) $(gsstruct_h) $(gxfixed_h) $(gxdevmem_h) $(gxfcache_h)\
  1692.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxdevice_h)
  1693.  
  1694. # ---------------- Pattern color ---------------- #
  1695.  
  1696. patlib_=gspcolor.$(OBJ) gxclip2.$(OBJ) gxpcmap.$(OBJ)
  1697. patlib.dev: $(LIB_MAK) $(ECHOGS_XE) cmyklib.dev psl2cs.dev $(patlib_)
  1698.     $(SETMOD) patlib -include cmyklib psl2cs
  1699.     $(ADDMOD) patlib -obj $(patlib_)
  1700.  
  1701. gspcolor.$(OBJ): gspcolor.c $(GXERR) $(math__h) \
  1702.   $(gsimage_h) $(gspath_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1703.   $(gxarith_h) $(gxcolor2_h) $(gxcoord_h) $(gxclip2_h) $(gxcspace_h) \
  1704.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) \
  1705.   $(gxfixed_h) $(gxmatrix_h) $(gxpath_h) $(gxpcolor_h) $(gzstate_h)
  1706.  
  1707. gxclip2.$(OBJ): gxclip2.c $(GXERR) $(memory__h) \
  1708.   $(gsstruct_h) $(gxclip2_h) $(gxdevice_h) $(gxdevmem_h)
  1709.  
  1710. gxpcmap.$(OBJ): gxpcmap.c $(GXERR) $(math__h) $(memory__h)\
  1711.  $(gsstruct_h) $(gsutil_h)\
  1712.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  1713.  $(gxfixed_h) $(gxmatrix_h) $(gxpcolor_h)\
  1714.  $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1715.  
  1716. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  1717.  
  1718. type1lib_=gxtype1.$(OBJ) gxhint1.$(OBJ) gxhint2.$(OBJ) gxhint3.$(OBJ)
  1719.  
  1720. gscrypt1_h=gscrypt1.h
  1721. gstype1_h=gstype1.h
  1722. gxfont1_h=gxfont1.h
  1723. gxop1_h=gxop1.h
  1724. gxtype1_h=gxtype1.h $(gscrypt1_h) $(gstype1_h) $(gxop1_h)
  1725.  
  1726. gxtype1.$(OBJ): gxtype1.c $(GXERR) $(math__h)\
  1727.  $(gsccode_h) $(gsline_h) $(gsstruct_h)\
  1728.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h)\
  1729.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1730.  $(gzpath_h)
  1731.  
  1732. gxhint1.$(OBJ): gxhint1.c $(GXERR)\
  1733.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1734.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1735.  
  1736. gxhint2.$(OBJ): gxhint2.c $(GXERR) $(memory__h)\
  1737.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1738.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1739.  
  1740. gxhint3.$(OBJ): gxhint3.c $(GXERR) $(math__h)\
  1741.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1742.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)\
  1743.  $(gzpath_h)
  1744.  
  1745. # Type 1 charstrings
  1746.  
  1747. psf1lib_=gstype1.$(OBJ)
  1748. psf1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf1lib_) $(type1lib_)
  1749.     $(SETMOD) psf1lib $(psf1lib_)
  1750.     $(ADDMOD) psf1lib $(type1lib_)
  1751.     $(ADDMOD) psf1lib -init gstype1
  1752.  
  1753. gstype1.$(OBJ): gstype1.c $(GXERR) $(math__h) $(memory__h)\
  1754.  $(gsstruct_h)\
  1755.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1756.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1757.  $(gzpath_h)
  1758.  
  1759. # Type 2 charstrings
  1760.  
  1761. psf2lib_=gstype2.$(OBJ)
  1762. psf2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf2lib_) $(type1lib_)
  1763.     $(SETMOD) psf2lib $(psf2lib_)
  1764.     $(ADDMOD) psf2lib $(type1lib_)
  1765.     $(ADDMOD) psf2lib -init gstype2
  1766.  
  1767. gstype2.$(OBJ): gstype2.c $(GXERR) $(math__h) $(memory__h)\
  1768.  $(gsstruct_h)\
  1769.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1770.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1771.  $(gzpath_h)
  1772.  
  1773. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  1774.  
  1775. ttflib_=gstype42.$(OBJ)
  1776. ttflib.dev: $(LIB_MAK) $(ECHOGS_XE) $(ttflib_)
  1777.     $(SETMOD) ttflib $(ttflib_)
  1778.  
  1779. gxfont42_h=gxfont42.h
  1780.  
  1781. gstype42.$(OBJ): gstype42.c $(GXERR) $(memory__h) \
  1782.   $(gsccode_h) $(gsmatrix_h) $(gsstruct_h) \
  1783.   $(gxfixed_h) $(gxfont_h) $(gxfont42_h) $(gxistate_h) $(gxpath_h)
  1784.  
  1785. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  1786.  
  1787. cmyklib_=gscolor1.$(OBJ) gsht1.$(OBJ)
  1788. cmyklib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmyklib_)
  1789.     $(SETMOD) cmyklib $(cmyklib_)
  1790.     $(ADDMOD) cmyklib -init gscolor1
  1791.  
  1792. gscolor1.$(OBJ): gscolor1.c $(GXERR) \
  1793.   $(gsccolor_h) $(gscolor1_h) $(gsstruct_h) $(gsutil_h) \
  1794.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) \
  1795.   $(gzstate_h)
  1796.  
  1797. gsht1.$(OBJ): gsht1.c $(GXERR) $(memory__h)\
  1798.  $(gsstruct_h) $(gsutil_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1799.  
  1800. colimlib_=gximage3.$(OBJ)
  1801. colimlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(colimlib_)
  1802.     $(SETMOD) colimlib $(colimlib_)
  1803.     $(ADDMOD) colimlib -init gximage3
  1804.  
  1805. gximage3.$(OBJ): gximage3.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1806.  $(gsccolor_h) $(gspaint_h)\
  1807.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcconv_h) $(gxdcolor_h)\
  1808.  $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h)\
  1809.  $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1810.  $(gzpath_h) $(gzstate_h)
  1811.  
  1812. # ---------------- HSB color ---------------- #
  1813.  
  1814. hsblib_=gshsb.$(OBJ)
  1815. hsblib.dev: $(LIB_MAK) $(ECHOGS_XE) $(hsblib_)
  1816.     $(SETMOD) hsblib $(hsblib_)
  1817.  
  1818. gshsb.$(OBJ): gshsb.c $(GX) \
  1819.   $(gscolor_h) $(gshsb_h) $(gxfrac_h)
  1820.  
  1821. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  1822.  
  1823. path1lib_=gspath1.$(OBJ)
  1824. path1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(path1lib_)
  1825.     $(SETMOD) path1lib $(path1lib_)
  1826.  
  1827. gspath1.$(OBJ): gspath1.c $(GXERR) $(math__h) \
  1828.   $(gscoord_h) $(gspath_h) $(gsstruct_h) \
  1829.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h) \
  1830.   $(gzstate_h) $(gzpath_h)
  1831.  
  1832. # --------------- Level 2 color space and color image support --------------- #
  1833.  
  1834. psl2cs_=gscolor2.$(OBJ)
  1835. psl2cs.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2cs_)
  1836.     $(SETMOD) psl2cs $(psl2cs_)
  1837.  
  1838. gscolor2.$(OBJ): gscolor2.c $(GXERR) \
  1839.   $(gxarith_h) $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gxmatrix_h) \
  1840.   $(gzstate_h)
  1841.  
  1842. psl2lib_=gximage4.$(OBJ) gximage5.$(OBJ)
  1843. psl2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2lib_) colimlib.dev psl2cs.dev
  1844.     $(SETMOD) psl2lib $(psl2lib_)
  1845.     $(ADDMOD) psl2lib -init gximage4 gximage5
  1846.     $(ADDMOD) psl2lib -include colimlib psl2cs
  1847.  
  1848. gximage4.$(OBJ): gximage4.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1849.  $(gsccolor_h) $(gspaint_h)\
  1850.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1851.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1852.  $(gxmatrix_h)\
  1853.  $(gzpath_h)
  1854.  
  1855. gximage5.$(OBJ): gximage5.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1856.  $(gsccolor_h) $(gspaint_h)\
  1857.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1858.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1859.  $(gxmatrix_h)\
  1860.  $(gzpath_h)
  1861.  
  1862. # ---------------- Display Postscript / Level 2 support ---------------- #
  1863.  
  1864. dps2lib_=gsdps1.$(OBJ)
  1865. dps2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(dps2lib_)
  1866.     $(SETMOD) dps2lib $(dps2lib_)
  1867.  
  1868. gsdps1.$(OBJ): gsdps1.c $(GXERR) $(math__h)\
  1869.  $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gspath2_h)\
  1870.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1871.  
  1872. # ---------------- CIE color ---------------- #
  1873.  
  1874. cielib_=gscie.$(OBJ) gxctable.$(OBJ)
  1875. cielib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cielib_)
  1876.     $(SETMOD) cielib $(cielib_)
  1877.  
  1878. gscie.$(OBJ): gscie.c $(GXERR) $(math__h) \
  1879.   $(gscie_h) $(gscolor2_h) $(gsmatrix_h) $(gsstruct_h) \
  1880.   $(gxarith_h) $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gzstate_h)
  1881.  
  1882. gxctable.$(OBJ): gxctable.c $(GX) \
  1883.   $(gxfixed_h) $(gxfrac_h) $(gxctable_h)
  1884.  
  1885. # ---------------- Separation colors ---------------- #
  1886.  
  1887. seprlib_=gscsepr.$(OBJ)
  1888. seprlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(seprlib_)
  1889.     $(SETMOD) seprlib $(seprlib_)
  1890.  
  1891. gscsepr.$(OBJ): gscsepr.c $(GXERR)\
  1892.  $(gscsepr_h) $(gsmatrix_h) $(gsrefct_h)\
  1893.  $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gzstate_h)
  1894.  
  1895. # ----------------------- Platform-specific modules ----------------------- #
  1896. # Platform-specific code doesn't really belong here: this is code that is
  1897. # shared among multiple platforms.
  1898.  
  1899. # Frame buffer implementations.
  1900.  
  1901. gp_nofb.$(OBJ): gp_nofb.c $(GX) \
  1902.   $(gp_h) $(gxdevice_h)
  1903.  
  1904. gp_dosfb.$(OBJ): gp_dosfb.c $(AK) $(malloc__h) $(memory__h)\
  1905.  $(gx_h) $(gp_h) $(gserrors_h) $(gxdevice_h)
  1906.  
  1907. # MS-DOS file system, also used by Desqview/X.
  1908. gp_dosfs.$(OBJ): gp_dosfs.c $(AK) $(dos__h) $(gp_h) $(gx_h)
  1909.  
  1910. # MS-DOS file enumeration, *not* used by Desqview/X.
  1911. gp_dosfe.$(OBJ): gp_dosfe.c $(AK) $(stdio__h) $(memory__h) $(string__h) \
  1912.   $(dos__h) $(gstypes_h) $(gsmemory_h) $(gsstruct_h) $(gp_h) $(gsutil_h)
  1913.  
  1914. # Other MS-DOS facilities.
  1915. gp_msdos.$(OBJ): gp_msdos.c $(AK) $(dos__h) $(stdio__h) $(string__h)\
  1916.  $(gsmemory_h) $(gstypes_h) $(gp_h)
  1917.  
  1918. # Unix(-like) file system, also used by Desqview/X.
  1919. gp_unifs.$(OBJ): gp_unifs.c $(AK) $(memory__h) $(string__h) $(gx_h) $(gp_h) \
  1920.   $(gsstruct_h) $(gsutil_h) $(stat__h) $(dirent__h)
  1921.  
  1922. # Unix(-like) file name syntax, *not* used by Desqview/X.
  1923. gp_unifn.$(OBJ): gp_unifn.c $(AK) $(gx_h) $(gp_h)
  1924.  
  1925. # ----------------------------- Main program ------------------------------ #
  1926.  
  1927. # Main program for library testing
  1928.  
  1929. gslib.$(OBJ): gslib.c $(AK) $(math__h) \
  1930.   $(gx_h) $(gp_h) $(gserrors_h) $(gsmatrix_h) $(gsstate_h) $(gscspace_h) \
  1931.   $(gscdefs_h) $(gscolor2_h) $(gscoord_h) $(gslib_h) $(gsparam_h) \
  1932.   $(gspaint_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1933.   $(gxalloc_h) $(gxdevice_h)
  1934. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  1935. # This file is part of Aladdin Ghostscript.
  1936. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  1937. # or distributor accepts any responsibility for the consequences of using it,
  1938. # or for whether it serves any particular purpose or works at all, unless he
  1939. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  1940. # License (the "License") for full details.
  1941. # Every copy of Aladdin Ghostscript must include a copy of the License,
  1942. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  1943. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  1944. # under certain conditions described in the License.  Among other things, the
  1945. # License requires that the copyright notice and this notice be preserved on
  1946. # all copies.
  1947.  
  1948. # (Platform-independent) makefile for language interpreters.
  1949. # See the end of gs.mak for where this fits into the build process.
  1950.  
  1951. # Define the name of this makefile.
  1952. INT_MAK=int.mak
  1953.  
  1954. # ======================== Interpreter support ======================== #
  1955.  
  1956. # This is support code for all interpreters, not just PostScript and PDF.
  1957. # It knows about the PostScript data types, but isn't supposed to
  1958. # depend on anything outside itself.
  1959.  
  1960. errors_h=errors.h
  1961. idebug_h=idebug.h
  1962. idict_h=idict.h
  1963. igc_h=igc.h
  1964. igcstr_h=igcstr.h
  1965. iname_h=iname.h
  1966. inamedef_h=inamedef.h $(gconfigv_h) $(iname_h)
  1967. ipacked_h=ipacked.h
  1968. iref_h=iref.h
  1969. isave_h=isave.h
  1970. isstate_h=isstate.h
  1971. istruct_h=istruct.h $(gsstruct_h)
  1972. iutil_h=iutil.h
  1973. ivmspace_h=ivmspace.h $(gsgc_h)
  1974. opdef_h=opdef.h
  1975. # Nested include files
  1976. ghost_h=ghost.h $(gx_h) $(iref_h)
  1977. imemory_h=imemory.h $(gsalloc_h) $(ivmspace_h)
  1978. ialloc_h=ialloc.h $(imemory_h)
  1979. iastruct_h=iastruct.h $(gxobj_h) $(ialloc_h)
  1980. iastate_h=iastate.h $(gxalloc_h) $(ialloc_h) $(istruct_h)
  1981. store_h=store.h $(ialloc_h)
  1982.  
  1983. GH=$(AK) $(ghost_h)
  1984.  
  1985. isupport1_=ialloc.$(OBJ) igc.$(OBJ) igcref.$(OBJ) igcstr.$(OBJ)
  1986. isupport2_=ilocate.$(OBJ) iname.$(OBJ) isave.$(OBJ)
  1987. isupport_=$(isupport1_) $(isupport2_)
  1988. isupport.dev: $(INT_MAK) $(ECHOGS_XE) $(isupport_)
  1989.     $(SETMOD) isupport $(isupport1_)
  1990.     $(ADDMOD) isupport -obj $(isupport2_)
  1991.     $(ADDMOD) isupport -init igcref
  1992.  
  1993. ialloc.$(OBJ): ialloc.c $(AK) $(memory__h) $(gx_h)\
  1994.  $(errors_h) $(gsstruct_h) $(gxarith_h)\
  1995.  $(iastate_h) $(iref_h) $(ivmspace_h) $(store_h)
  1996.  
  1997. # igc.c, igcref.c, and igcstr.c should really be in the dpsand2 list,
  1998. # but since all the GC enumeration and relocation routines refer to them,
  1999. # it's too hard to separate them out from the Level 1 base.
  2000. igc.$(OBJ): igc.c $(GH) $(memory__h)\
  2001.   $(errors_h) $(gsexit_h) $(gsmdebug_h) $(gsstruct_h) $(gsutil_h) \
  2002.   $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(inamedef_h) \
  2003.   $(ipacked_h) $(isave_h) $(isstate_h) $(istruct_h) $(opdef_h)
  2004.  
  2005. igcref.$(OBJ): igcref.c $(GH) $(memory__h)\
  2006.  $(gsexit_h) $(gsstruct_h)\
  2007.  $(iastate_h) $(idebug_h) $(igc_h) $(iname_h) $(ipacked_h) $(store_h)
  2008.  
  2009. igcstr.$(OBJ): igcstr.c $(GH) $(memory__h)\
  2010.  $(gsmdebug_h) $(gsstruct_h) $(iastate_h) $(igcstr_h)
  2011.  
  2012. ilocate.$(OBJ): ilocate.c $(GH) $(memory__h)\
  2013.  $(errors_h) $(gsexit_h) $(gsstruct_h)\
  2014.  $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(iname_h)\
  2015.  $(ipacked_h) $(isstate_h) $(iutil_h) $(ivmspace_h)\
  2016.  $(store_h)
  2017.  
  2018. iname.$(OBJ): iname.c $(GH) $(memory__h) $(string__h)\
  2019.  $(gsstruct_h) $(gxobj_h)\
  2020.  $(errors_h) $(imemory_h) $(inamedef_h) $(isave_h) $(store_h)
  2021.  
  2022. isave.$(OBJ): isave.c $(GH) $(memory__h)\
  2023.  $(errors_h) $(gsexit_h) $(gsstruct_h) $(gsutil_h)\
  2024.  $(iastate_h) $(inamedef_h) $(isave_h) $(isstate_h) $(ivmspace_h)\
  2025.  $(ipacked_h) $(store_h)
  2026.  
  2027. ### Include files
  2028.  
  2029. idparam_h=idparam.h
  2030. ilevel_h=ilevel.h
  2031. iparam_h=iparam.h $(gsparam_h)
  2032. istack_h=istack.h
  2033. iutil2_h=iutil2.h
  2034. opcheck_h=opcheck.h
  2035. opextern_h=opextern.h
  2036. # Nested include files
  2037. dstack_h=dstack.h $(istack_h)
  2038. estack_h=estack.h $(istack_h)
  2039. ostack_h=ostack.h $(istack_h)
  2040. oper_h=oper.h $(iutil_h) $(opcheck_h) $(opdef_h) $(opextern_h) $(ostack_h)
  2041.  
  2042. idebug.$(OBJ): idebug.c $(GH) $(string__h)\
  2043.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2044.  $(ostack_h) $(opdef_h) $(ipacked_h) $(store_h)
  2045.  
  2046. idict.$(OBJ): idict.c $(GH) $(string__h) $(errors_h)\
  2047.  $(ialloc_h) $(idebug_h) $(ivmspace_h) $(inamedef_h) $(ipacked_h)\
  2048.  $(isave_h) $(store_h) $(iutil_h) $(idict_h) $(dstack_h)
  2049.  
  2050. idparam.$(OBJ): idparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2051.  $(gsmatrix_h) $(gsuid_h)\
  2052.  $(idict_h) $(idparam_h) $(ilevel_h) $(imemory_h) $(iname_h) $(iutil_h)\
  2053.  $(oper_h) $(store_h)
  2054.  
  2055. iparam.$(OBJ): iparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2056.  $(ialloc_h) $(idict_h) $(iname_h) $(imemory_h) $(iparam_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2057.  $(opcheck_h) $(store_h)
  2058.  
  2059. istack.$(OBJ): istack.c $(GH) $(memory__h) \
  2060.   $(errors_h) $(gsstruct_h) $(gsutil_h) \
  2061.   $(ialloc_h) $(istack_h) $(istruct_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2062.  
  2063. iutil.$(OBJ): iutil.c $(GH) $(math__h) $(memory__h) $(string__h)\
  2064.  $(gsccode_h) $(gsmatrix_h) $(gsutil_h) $(gxfont_h)\
  2065.  $(errors_h) $(idict_h) $(imemory_h) $(iutil_h) $(ivmspace_h)\
  2066.  $(iname_h) $(ipacked_h) $(oper_h) $(store_h)
  2067.  
  2068. # ======================== PostScript Level 1 ======================== #
  2069.  
  2070. ###### Include files
  2071.  
  2072. files_h=files.h
  2073. fname_h=fname.h
  2074. ichar_h=ichar.h
  2075. icharout_h=icharout.h
  2076. icolor_h=icolor.h
  2077. icontext_h=icontext.h $(imemory_h) $(istack_h)
  2078. icsmap_h=icsmap.h
  2079. ifont_h=ifont.h $(gsccode_h) $(gsstruct_h)
  2080. iht_h=iht.h
  2081. iimage_h=iimage.h
  2082. imain_h=imain.h $(gsexit_h)
  2083. imainarg_h=imainarg.h
  2084. iminst_h=iminst.h $(imain_h)
  2085. interp_h=interp.h
  2086. iparray_h=iparray.h
  2087. iscannum_h=iscannum.h
  2088. istream_h=istream.h
  2089. main_h=main.h $(iminst_h)
  2090. overlay_h=overlay.h
  2091. sbwbs_h=sbwbs.h
  2092. sfilter_h=sfilter.h $(gstypes_h)
  2093. shcgen_h=shcgen.h
  2094. smtf_h=smtf.h
  2095. # Nested include files
  2096. bfont_h=bfont.h $(ifont_h)
  2097. ifilter_h=ifilter.h $(istream_h) $(ivmspace_h)
  2098. igstate_h=igstate.h $(gsstate_h) $(gxstate_h) $(istruct_h)
  2099. iscan_h=iscan.h $(sa85x_h) $(sstring_h)
  2100. sbhc_h=sbhc.h $(shc_h)
  2101. # Include files for optional features
  2102. ibnum_h=ibnum.h
  2103.  
  2104. ### Initialization and scanning
  2105.  
  2106. iconfig=iconfig$(CONFIG)
  2107. $(iconfig).$(OBJ): iconf.c $(stdio__h) \
  2108.   $(gconfig_h) $(gscdefs_h) $(gsmemory_h) \
  2109.   $(files_h) $(iminst_h) $(iref_h) $(ivmspace_h) $(opdef_h) $(stream_h)
  2110.     $(RM_) gconfig.h
  2111.     $(RM_) $(iconfig).c
  2112.     $(CP_) $(gconfig_h) gconfig.h
  2113.     $(CP_) iconf.c $(iconfig).c
  2114.     $(CCC) $(iconfig).c
  2115.     $(RM_) gconfig.h
  2116.     $(RM_) $(iconfig).c
  2117.  
  2118. iinit.$(OBJ): iinit.c $(GH) $(string__h)\
  2119.  $(gscdefs_h) $(gsexit_h) $(gsstruct_h)\
  2120.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h)\
  2121.  $(ilevel_h) $(iname_h) $(interp_h) $(opdef_h)\
  2122.  $(ipacked_h) $(iparray_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2123.  
  2124. iscan.$(OBJ): iscan.c $(GH) $(memory__h)\
  2125.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h) $(files_h)\
  2126.  $(ilevel_h) $(iutil_h) $(iscan_h) $(iscannum_h) $(istruct_h) $(ivmspace_h)\
  2127.  $(iname_h) $(ipacked_h) $(iparray_h) $(istream_h) $(ostack_h) $(store_h)\
  2128.  $(stream_h) $(strimpl_h) $(sfilter_h) $(scanchar_h)
  2129.  
  2130. iscannum.$(OBJ): iscannum.c $(GH) $(math__h)\
  2131.   $(errors_h) $(iscannum_h) $(scanchar_h) $(scommon_h) $(store_h)
  2132.  
  2133. ### Streams
  2134.  
  2135. sfilter1.$(OBJ): sfilter1.c $(AK) $(stdio__h) $(memory__h) \
  2136.   $(sfilter_h) $(strimpl_h)
  2137.  
  2138. ###### Operators
  2139.  
  2140. OP=$(GH) $(errors_h) $(oper_h)
  2141.  
  2142. ### Non-graphics operators
  2143.  
  2144. zarith.$(OBJ): zarith.c $(OP) $(math__h) $(store_h)
  2145.  
  2146. zarray.$(OBJ): zarray.c $(OP) $(memory__h) $(ialloc_h) $(ipacked_h) $(store_h)
  2147.  
  2148. zcontrol.$(OBJ): zcontrol.c $(OP) $(string__h)\
  2149.  $(estack_h) $(files_h) $(ipacked_h) $(iutil_h) $(store_h) $(stream_h)
  2150.  
  2151. zdict.$(OBJ): zdict.c $(OP) \
  2152.   $(dstack_h) $(idict_h) $(ilevel_h) $(iname_h) $(ipacked_h) $(ivmspace_h) \
  2153.   $(store_h)
  2154.  
  2155. zfile.$(OBJ): zfile.c $(OP) $(memory__h) $(string__h) $(gp_h)\
  2156.  $(gsstruct_h) $(gxiodev_h) \
  2157.  $(ialloc_h) $(estack_h) $(files_h) $(fname_h) $(ilevel_h) $(interp_h) $(iutil_h)\
  2158.  $(isave_h) $(main_h) $(sfilter_h) $(stream_h) $(strimpl_h) $(store_h)
  2159.  
  2160. zfileio.$(OBJ): zfileio.c $(OP) $(gp_h) \
  2161.   $(files_h) $(ifilter_h) $(store_h) $(stream_h) $(strimpl_h) \
  2162.   $(gsmatrix_h) $(gxdevice_h) $(gxdevmem_h)
  2163.  
  2164. zfilter.$(OBJ): zfilter.c $(OP) $(memory__h)\
  2165.  $(gsstruct_h) $(files_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2166.  $(sfilter_h) $(srlx_h) $(sstring_h) $(store_h) $(stream_h) $(strimpl_h)
  2167.  
  2168. zfname.$(OBJ): zfname.c $(OP) $(memory__h)\
  2169.  $(fname_h) $(gxiodev_h) $(ialloc_h) $(stream_h)
  2170.  
  2171. zfproc.$(OBJ): zfproc.c $(GH) $(memory__h)\
  2172.  $(errors_h) $(oper_h)\
  2173.  $(estack_h) $(files_h) $(gsstruct_h) $(ialloc_h) $(ifilter_h) $(istruct_h)\
  2174.  $(store_h) $(stream_h) $(strimpl_h)
  2175.  
  2176. zgeneric.$(OBJ): zgeneric.c $(OP) $(memory__h)\
  2177.  $(idict_h) $(estack_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(store_h)
  2178.  
  2179. ziodev.$(OBJ): ziodev.c $(OP) $(memory__h) $(stdio__h) $(string__h)\
  2180.  $(gp_h) $(gpcheck_h)\
  2181.  $(gsstruct_h) $(gxiodev_h)\
  2182.  $(files_h) $(ialloc_h) $(ivmspace_h) $(store_h) $(stream_h)
  2183.  
  2184. zmath.$(OBJ): zmath.c $(OP) $(math__h) $(gxfarith_h) $(store_h)
  2185.  
  2186. zmisc.$(OBJ): zmisc.c $(OP) $(gscdefs_h) $(gp_h) \
  2187.   $(errno__h) $(memory__h) $(string__h) \
  2188.   $(ialloc_h) $(idict_h) $(dstack_h) $(iname_h) $(ivmspace_h) $(ipacked_h) $(store_h)
  2189.  
  2190. zpacked.$(OBJ): zpacked.c $(OP) \
  2191.   $(ialloc_h) $(idict_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(iparray_h) \
  2192.   $(istack_h) $(store_h)
  2193.  
  2194. zrelbit.$(OBJ): zrelbit.c $(OP) $(gsutil_h) $(store_h) $(idict_h)
  2195.  
  2196. zstack.$(OBJ): zstack.c $(OP) $(memory__h)\
  2197.  $(ialloc_h) $(istack_h) $(store_h)
  2198.  
  2199. zstring.$(OBJ): zstring.c $(OP) $(memory__h)\
  2200.  $(gsutil_h)\
  2201.  $(ialloc_h) $(iname_h) $(ivmspace_h) $(store_h)
  2202.  
  2203. zsysvm.$(OBJ): zsysvm.c $(GH)\
  2204.  $(ialloc_h) $(ivmspace_h) $(oper_h) $(store_h)
  2205.  
  2206. ztoken.$(OBJ): ztoken.c $(OP) \
  2207.   $(estack_h) $(files_h) $(gsstruct_h) $(iscan_h) \
  2208.   $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2209.  
  2210. ztype.$(OBJ): ztype.c $(OP) $(math__h) $(memory__h) $(string__h)\
  2211.  $(dstack_h) $(idict_h) $(imemory_h) $(iname_h)\
  2212.  $(iscan_h) $(iutil_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2213.  
  2214. zvmem.$(OBJ): zvmem.c $(OP)\
  2215.  $(dstack_h) $(estack_h) $(files_h)\
  2216.  $(ialloc_h) $(idict_h) $(igstate_h) $(isave_h) $(store_h) $(stream_h)\
  2217.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h)
  2218.  
  2219. ### Graphics operators
  2220.  
  2221. zchar.$(OBJ): zchar.c $(OP)\
  2222.  $(gsstruct_h) $(gxarith_h) $(gxfixed_h) $(gxmatrix_h)\
  2223.  $(gxchar_h) $(gxdevice_h) $(gxfont_h) $(gzpath_h) $(gzstate_h)\
  2224.  $(dstack_h) $(estack_h) $(ialloc_h) $(ichar_h) $(idict_h) $(ifont_h)\
  2225.  $(ilevel_h) $(iname_h) $(igstate_h) $(ipacked_h) $(store_h)
  2226.  
  2227. # zcharout is used for Type 1 and Type 42 fonts only.
  2228. zcharout.$(OBJ): zcharout.c $(OP)\
  2229.  $(gschar_h) $(gxdevice_h) $(gxfont_h)\
  2230.  $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h)\
  2231.  $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2232.  
  2233. zcolor.$(OBJ): zcolor.c $(OP) \
  2234.   $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gxdevice_h) $(gxcmap_h) \
  2235.   $(ialloc_h) $(icolor_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2236.  
  2237. zdevice.$(OBJ): zdevice.c $(OP) $(string__h)\
  2238.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(interp_h) $(iparam_h) $(ivmspace_h)\
  2239.  $(gsmatrix_h) $(gsstate_h) $(gxdevice_h) $(store_h)
  2240.  
  2241. zfont.$(OBJ): zfont.c $(OP)\
  2242.  $(gschar_h) $(gsstruct_h) $(gxdevice_h) $(gxfont_h) $(gxfcache_h)\
  2243.  $(gzstate_h)\
  2244.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(isave_h) $(ivmspace_h)\
  2245.  $(bfont_h) $(store_h)
  2246.  
  2247. zfont2.$(OBJ): zfont2.c $(OP) $(memory__h) $(string__h)\
  2248.  $(gsmatrix_h) $(gxdevice_h) $(gschar_h) $(gxfixed_h) $(gxfont_h)\
  2249.  $(ialloc_h) $(bfont_h) $(idict_h) $(idparam_h) $(ilevel_h) $(iname_h) $(istruct_h)\
  2250.  $(ipacked_h) $(store_h)
  2251.  
  2252. zgstate.$(OBJ): zgstate.c $(OP) $(math__h)\
  2253.  $(gsmatrix_h) $(ialloc_h) $(idict_h) $(igstate_h) $(istruct_h) $(store_h)
  2254.  
  2255. zht.$(OBJ): zht.c $(OP) $(memory__h)\
  2256.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2257.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2258.  
  2259. zimage.$(OBJ): zimage.c $(OP) \
  2260.   $(estack_h) $(ialloc_h) $(ifilter_h) $(igstate_h) $(iimage_h) $(ilevel_h) \
  2261.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  2262.   $(store_h) $(stream_h)
  2263.  
  2264. zmatrix.$(OBJ): zmatrix.c $(OP)\
  2265.  $(gsmatrix_h) $(igstate_h) $(gscoord_h) $(store_h)
  2266.  
  2267. zpaint.$(OBJ): zpaint.c $(OP)\
  2268.  $(gspaint_h) $(igstate_h)
  2269.  
  2270. zpath.$(OBJ): zpath.c $(OP) $(math__h) \
  2271.   $(gsmatrix_h) $(gspath_h) $(igstate_h) $(store_h)
  2272.  
  2273. # Define the base PostScript language interpreter.
  2274. # This is the subset of PostScript Level 1 required by our PDF reader.
  2275.  
  2276. INT1=icontext.$(OBJ) idebug.$(OBJ) idict.$(OBJ) idparam.$(OBJ)
  2277. INT2=iinit.$(OBJ) interp.$(OBJ) iparam.$(OBJ) ireclaim.$(OBJ)
  2278. INT3=iscan.$(OBJ) iscannum.$(OBJ) istack.$(OBJ) iutil.$(OBJ)
  2279. INT4=scantab.$(OBJ) sfilter1.$(OBJ) sstring.$(OBJ) stream.$(OBJ)
  2280. Z1=zarith.$(OBJ) zarray.$(OBJ) zcontrol.$(OBJ) zdict.$(OBJ)
  2281. Z1OPS=zarith zarray zcontrol zdict
  2282. Z2=zfile.$(OBJ) zfileio.$(OBJ) zfilter.$(OBJ) zfname.$(OBJ) zfproc.$(OBJ)
  2283. Z2OPS=zfile zfileio zfilter zfproc
  2284. Z3=zgeneric.$(OBJ) ziodev.$(OBJ) zmath.$(OBJ) zmisc.$(OBJ) zpacked.$(OBJ)
  2285. Z3OPS=zgeneric ziodev zmath zmisc zpacked
  2286. Z4=zrelbit.$(OBJ) zstack.$(OBJ) zstring.$(OBJ) zsysvm.$(OBJ)
  2287. Z4OPS=zrelbit zstack zstring zsysvm
  2288. Z5=ztoken.$(OBJ) ztype.$(OBJ) zvmem.$(OBJ)
  2289. Z5OPS=ztoken ztype zvmem
  2290. Z6=zchar.$(OBJ) zcolor.$(OBJ) zdevice.$(OBJ) zfont.$(OBJ) zfont2.$(OBJ)
  2291. Z6OPS=zchar zcolor zdevice zfont zfont2
  2292. Z7=zgstate.$(OBJ) zht.$(OBJ) zimage.$(OBJ) zmatrix.$(OBJ) zpaint.$(OBJ) zpath.$(OBJ)
  2293. Z7OPS=zgstate zht zimage zmatrix zpaint zpath
  2294. # We have to be a little underhanded with *config.$(OBJ) so as to avoid
  2295. # circular definitions.
  2296. INT_OBJS=imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ) \
  2297.   $(INT1) $(INT2) $(INT3) $(INT4) \
  2298.   $(Z1) $(Z2) $(Z3) $(Z4) $(Z5) $(Z6) $(Z7)
  2299. INT_CONFIG=$(gconfig).$(OBJ) $(gscdefs).$(OBJ) $(iconfig).$(OBJ) \
  2300.   iccinit$(COMPILE_INITS).$(OBJ)
  2301. INT_ALL=$(INT_OBJS) $(INT_CONFIG)
  2302. # We omit libcore.dev, which should be included here, because problems
  2303. # with the Unix linker require libcore to appear last in the link list
  2304. # when libcore is really a library.
  2305. # We omit $(INT_CONFIG) from the dependency list because they have special
  2306. # dependency requirements and are added to the link list at the very end.
  2307. # zfilter.c shouldn't include the RLE and RLD filters, but we don't want to
  2308. # change this now.
  2309. psbase.dev: $(INT_MAK) $(ECHOGS_XE) $(INT_OBJS)\
  2310.  isupport.dev rld.dev rle.dev sfile.dev
  2311.     $(SETMOD) psbase imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ)
  2312.     $(ADDMOD) psbase -obj $(INT_CONFIG)
  2313.     $(ADDMOD) psbase -obj $(INT1)
  2314.     $(ADDMOD) psbase -obj $(INT2)
  2315.     $(ADDMOD) psbase -obj $(INT3)
  2316.     $(ADDMOD) psbase -obj $(INT4)
  2317.     $(ADDMOD) psbase -obj $(Z1)
  2318.     $(ADDMOD) psbase -oper $(Z1OPS)
  2319.     $(ADDMOD) psbase -obj $(Z2)
  2320.     $(ADDMOD) psbase -oper $(Z2OPS)
  2321.     $(ADDMOD) psbase -obj $(Z3)
  2322.     $(ADDMOD) psbase -oper $(Z3OPS)
  2323.     $(ADDMOD) psbase -obj $(Z4)
  2324.     $(ADDMOD) psbase -oper $(Z4OPS)
  2325.     $(ADDMOD) psbase -obj $(Z5)
  2326.     $(ADDMOD) psbase -oper $(Z5OPS)
  2327.     $(ADDMOD) psbase -obj $(Z6)
  2328.     $(ADDMOD) psbase -oper $(Z6OPS)
  2329.     $(ADDMOD) psbase -obj $(Z7)
  2330.     $(ADDMOD) psbase -oper $(Z7OPS)
  2331.     $(ADDMOD) psbase -iodev stdin stdout stderr lineedit statementedit
  2332.     $(ADDMOD) psbase -include isupport rld rle sfile
  2333.  
  2334. # -------------------------- Feature definitions -------------------------- #
  2335.  
  2336. # ---------------- Full Level 1 interpreter ---------------- #
  2337.  
  2338. level1.dev: $(INT_MAK) $(ECHOGS_XE) psbase.dev bcp.dev hsb.dev path1.dev type1.dev
  2339.     $(SETMOD) level1 -include psbase bcp hsb path1 type1
  2340.     $(ADDMOD) level1 -emulator PostScript PostScriptLevel1
  2341.  
  2342. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  2343.  
  2344. color.dev: $(INT_MAK) $(ECHOGS_XE) cmyklib.dev colimlib.dev cmykread.dev
  2345.     $(SETMOD) color -include cmyklib colimlib cmykread
  2346.  
  2347. cmykread_=zcolor1.$(OBJ) zht1.$(OBJ)
  2348. cmykread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmykread_)
  2349.     $(SETMOD) cmykread $(cmykread_)
  2350.     $(ADDMOD) cmykread -oper zcolor1 zht1
  2351.  
  2352. zcolor1.$(OBJ): zcolor1.c $(OP) \
  2353.   $(gscolor1_h) \
  2354.   $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2355.   $(gzstate_h) \
  2356.   $(ialloc_h) $(icolor_h) $(iimage_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2357.  
  2358. zht1.$(OBJ): zht1.c $(OP) $(memory__h)\
  2359.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h)\
  2360.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2361.  
  2362. # ---------------- HSB color ---------------- #
  2363.  
  2364. hsb_=zhsb.$(OBJ)
  2365. hsb.dev: $(INT_MAK) $(ECHOGS_XE) $(hsb_) hsblib.dev
  2366.     $(SETMOD) hsb $(hsb_)
  2367.     $(ADDMOD) hsb -include hsblib
  2368.     $(ADDMOD) hsb -oper zhsb
  2369.  
  2370. zhsb.$(OBJ): zhsb.c $(OP) \
  2371.   $(gshsb_h) $(igstate_h) $(store_h)
  2372.  
  2373. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  2374.  
  2375. path1_=zpath1.$(OBJ)
  2376. path1.dev: $(INT_MAK) $(ECHOGS_XE) $(path1_) path1lib.dev
  2377.     $(SETMOD) path1 $(path1_)
  2378.     $(ADDMOD) path1 -include path1lib
  2379.     $(ADDMOD) path1 -oper zpath1
  2380.  
  2381. zpath1.$(OBJ): zpath1.c $(OP) $(memory__h)\
  2382.  $(ialloc_h) $(estack_h) $(gspath_h) $(gsstruct_h) $(igstate_h) $(store_h)
  2383.  
  2384. # ================ Level-independent PostScript options ================ #
  2385.  
  2386. # ---------------- BCP filters ---------------- #
  2387.  
  2388. bcp_=sbcp.$(OBJ) zfbcp.$(OBJ)
  2389. bcp.dev: $(INT_MAK) $(ECHOGS_XE) $(bcp_)
  2390.     $(SETMOD) bcp $(bcp_)
  2391.     $(ADDMOD) bcp -oper zfbcp
  2392.  
  2393. sbcp.$(OBJ): sbcp.c $(AK) $(stdio__h) \
  2394.   $(sfilter_h) $(strimpl_h)
  2395.  
  2396. zfbcp.$(OBJ): zfbcp.c $(OP) $(memory__h)\
  2397.  $(gsstruct_h) $(ialloc_h) $(ifilter_h)\
  2398.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2399.  
  2400. # ---------------- Incremental font loading ---------------- #
  2401. # (This only works for Type 1 fonts without eexec encryption.)
  2402.  
  2403. diskfont.dev: $(INT_MAK) $(ECHOGS_XE)
  2404.     $(SETMOD) diskfont -ps gs_diskf
  2405.  
  2406. # ---------------- Double-precision floats ---------------- #
  2407.  
  2408. double_=zdouble.$(OBJ)
  2409. double.dev: $(INT_MAK) $(ECHOGS_XE) $(double_)
  2410.     $(SETMOD) double $(double_)
  2411.     $(ADDMOD) double -oper zdouble
  2412.  
  2413. zdouble.$(OBJ): zdouble.c $(OP) $(ctype__h) $(math__h) $(memory__h) $(string__h) \
  2414.   $(gxfarith_h) $(store_h)
  2415.  
  2416. # ---------------- EPSF files with binary headers ---------------- #
  2417.  
  2418. epsf.dev: $(INT_MAK) $(ECHOGS_XE)
  2419.     $(SETMOD) epsf -ps gs_epsf
  2420.  
  2421. # ---------------- RasterOp ---------------- #
  2422. # This should be a separable feature in the core also....
  2423.  
  2424. rasterop.dev: $(INT_MAK) $(ECHOGS_XE) roplib.dev ropread.dev
  2425.     $(SETMOD) rasterop -include roplib ropread
  2426.  
  2427. ropread_=zrop.$(OBJ)
  2428. ropread.dev: $(INT_MAK) $(ECHOGS_XE) $(ropread_)
  2429.     $(SETMOD) ropread $(ropread_)
  2430.     $(ADDMOD) ropread -oper zrop
  2431.  
  2432. zrop.$(OBJ): zrop.c $(OP) $(memory__h)\
  2433.  $(gsrop_h) $(gsutil_h) $(gxdevice_h)\
  2434.  $(idict_h) $(idparam_h) $(igstate_h) $(store_h)
  2435.  
  2436. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  2437.  
  2438. type1.dev: $(INT_MAK) $(ECHOGS_XE) psf1lib.dev psf1read.dev
  2439.     $(SETMOD) type1 -include psf1lib psf1read
  2440.  
  2441. psf1read_=seexec.$(OBJ) zchar1.$(OBJ) zcharout.$(OBJ) zfont1.$(OBJ) zmisc1.$(OBJ)
  2442. psf1read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf1read_)
  2443.     $(SETMOD) psf1read $(psf1read_)
  2444.     $(ADDMOD) psf1read -oper zchar1 zfont1 zmisc1
  2445.     $(ADDMOD) psf1read -ps gs_type1
  2446.  
  2447. seexec.$(OBJ): seexec.c $(AK) $(stdio__h) \
  2448.   $(gscrypt1_h) $(scanchar_h) $(sfilter_h) $(strimpl_h)
  2449.  
  2450. zchar1.$(OBJ): zchar1.c $(OP) \
  2451.   $(gspaint_h) $(gspath_h) $(gsstruct_h) \
  2452.   $(gxchar_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2453.   $(gxfont_h) $(gxfont1_h) $(gxtype1_h) $(gzstate_h) \
  2454.   $(estack_h) $(ialloc_h) $(ichar_h) $(icharout_h) \
  2455.   $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2456.  
  2457. zfont1.$(OBJ): zfont1.c $(OP) \
  2458.   $(gsmatrix_h) $(gxdevice_h) $(gschar_h) \
  2459.   $(gxfixed_h) $(gxfont_h) $(gxfont1_h) \
  2460.   $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(store_h)
  2461.  
  2462. zmisc1.$(OBJ): zmisc1.c $(OP) $(memory__h)\
  2463.  $(gscrypt1_h)\
  2464.  $(idict_h) $(idparam_h) $(ifilter_h)\
  2465.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2466.  
  2467. # -------------- Compact Font Format and Type 2 charstrings ------------- #
  2468.  
  2469. cff.dev: $(INT_MAK) $(ECHOGS_XE) gs_cff.ps psl2int.dev
  2470.     $(SETMOD) cff -ps gs_cff
  2471.  
  2472. type2.dev: $(INT_MAK) $(ECHOGS_XE) type1.dev psf2lib.dev
  2473.     $(SETMOD) type2 -include psf2lib
  2474.  
  2475. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  2476.  
  2477. # Native TrueType support
  2478. ttfont.dev: $(INT_MAK) $(ECHOGS_XE) type42.dev
  2479.     $(SETMOD) ttfont -include type42
  2480.     $(ADDMOD) ttfont -ps gs_mro_e gs_wan_e gs_ttf
  2481.  
  2482. # Type 42 (embedded TrueType) support
  2483. type42read_=zchar42.$(OBJ) zcharout.$(OBJ) zfont42.$(OBJ)
  2484. type42.dev: $(INT_MAK) $(ECHOGS_XE) $(type42read_) ttflib.dev
  2485.     $(SETMOD) type42 $(type42read_)
  2486.     $(ADDMOD) type42 -include ttflib    
  2487.     $(ADDMOD) type42 -oper zchar42 zfont42
  2488.     $(ADDMOD) type42 -ps gs_typ42
  2489.  
  2490. zchar42.$(OBJ): zchar42.c $(OP) \
  2491.   $(gsmatrix_h) $(gspaint_h) $(gspath_h) \
  2492.   $(gxfixed_h) $(gxchar_h) $(gxfont_h) $(gxfont42_h) \
  2493.   $(gxistate_h) $(gxpath_h) $(gzstate_h) \
  2494.   $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h) \
  2495.   $(ifont_h) $(igstate_h) $(store_h)
  2496.  
  2497. zfont42.$(OBJ): zfont42.c $(OP) \
  2498.   $(gsccode_h) $(gsmatrix_h) $(gxfont_h) $(gxfont42_h) \
  2499.   $(bfont_h) $(idict_h) $(idparam_h) $(store_h)
  2500.  
  2501. # ======================== Precompilation options ======================== #
  2502.  
  2503. # ---------------- Precompiled fonts ---------------- #
  2504. # See fonts.txt for more information.
  2505.  
  2506. ccfont_h=ccfont.h $(std_h) $(gsmemory_h) $(iref_h) $(ivmspace_h) $(store_h)
  2507.  
  2508. CCFONT=$(OP) $(ccfont_h)
  2509.  
  2510. # List the fonts we are going to compile.
  2511. # Because of intrinsic limitations in `make', we have to list
  2512. # the object file names and the font names separately.
  2513. # Because of limitations in the DOS shell, we have to break the fonts up
  2514. # into lists that will fit on a single line (120 characters).
  2515. # The rules for constructing the .c files from the fonts themselves,
  2516. # and for compiling the .c files, are in cfonts.mak, not here.
  2517. # For example, to compile the Courier fonts, you should invoke
  2518. #    make -f cfonts.mak Courier_o
  2519. # By convention, the names of the 35 standard compiled fonts use '0' for
  2520. # the foundry name.  This allows users to substitute different foundries
  2521. # without having to change this makefile.
  2522. ccfonts_ps=gs_ccfnt
  2523. ccfonts1_=0agk.$(OBJ) 0agko.$(OBJ) 0agd.$(OBJ) 0agdo.$(OBJ)
  2524. ccfonts1=agk agko agd agdo
  2525. ccfonts2_=0bkl.$(OBJ) 0bkli.$(OBJ) 0bkd.$(OBJ) 0bkdi.$(OBJ)
  2526. ccfonts2=bkl bkli bkd bkdi
  2527. ccfonts3_=0crr.$(OBJ) 0cri.$(OBJ) 0crb.$(OBJ) 0crbi.$(OBJ)
  2528. ccfonts3=crr cri crb crbi
  2529. ccfonts4_=0hvr.$(OBJ) 0hvro.$(OBJ) 0hvb.$(OBJ) 0hvbo.$(OBJ)
  2530. ccfonts4=hvr hvro hvb hvbo
  2531. ccfonts5_=0hvrrn.$(OBJ) 0hvrorn.$(OBJ) 0hvbrn.$(OBJ) 0hvborn.$(OBJ)
  2532. ccfonts5=hvrrn hvrorn hvbrn hvborn
  2533. ccfonts6_=0ncr.$(OBJ) 0ncri.$(OBJ) 0ncb.$(OBJ) 0ncbi.$(OBJ)
  2534. ccfonts6=ncr ncri ncb ncbi
  2535. ccfonts7_=0plr.$(OBJ) 0plri.$(OBJ) 0plb.$(OBJ) 0plbi.$(OBJ)
  2536. ccfonts7=plr plri plb plbi
  2537. ccfonts8_=0tmr.$(OBJ) 0tmri.$(OBJ) 0tmb.$(OBJ) 0tmbi.$(OBJ)
  2538. ccfonts8=tmr tmri tmb tmbi
  2539. ccfonts9_=0syr.$(OBJ) 0zcmi.$(OBJ) 0zdr.$(OBJ)
  2540. ccfonts9=syr zcmi zdr
  2541. # The free distribution includes Bitstream Charter, Utopia, and
  2542. # freeware Cyrillic and Kana fonts.  We only provide for compiling
  2543. # Charter and Utopia.
  2544. ccfonts10free_=bchr.$(OBJ) bchri.$(OBJ) bchb.$(OBJ) bchbi.$(OBJ)
  2545. ccfonts10free=chr chri chb chbi
  2546. ccfonts11free_=putr.$(OBJ) putri.$(OBJ) putb.$(OBJ) putbi.$(OBJ)
  2547. ccfonts11free=utr utri utb utbi
  2548. # Uncomment the alternatives in the next 4 lines if you want
  2549. # Charter and Utopia compiled in.
  2550. #ccfonts10_=$(ccfonts10free_)
  2551. ccfonts10_=
  2552. #ccfonts10=$(ccfonts10free)
  2553. ccfonts10=
  2554. #ccfonts11_=$(ccfonts11free_)
  2555. ccfonts11_=
  2556. #ccfonts11=$(ccfonts11free)
  2557. ccfonts11=
  2558. # Add your own fonts here if desired.
  2559. ccfonts12_=
  2560. ccfonts12=
  2561. ccfonts13_=
  2562. ccfonts13=
  2563. ccfonts14_=
  2564. ccfonts14=
  2565. ccfonts15_=
  2566. ccfonts15=
  2567.  
  2568. # It's OK for ccfonts_.dev not to be CONFIG-dependent, because it only
  2569. # exists during the execution of the following rule.
  2570. # font2c has the prefix "gs" built into it, so we need to instruct
  2571. # genconf to use the same one.
  2572. $(gconfigf_h): $(MAKEFILE) $(INT_MAK) $(GENCONF_XE)
  2573.     $(SETMOD) ccfonts_ -font $(ccfonts1)
  2574.     $(ADDMOD) ccfonts_ -font $(ccfonts2)
  2575.     $(ADDMOD) ccfonts_ -font $(ccfonts3)
  2576.     $(ADDMOD) ccfonts_ -font $(ccfonts4)
  2577.     $(ADDMOD) ccfonts_ -font $(ccfonts5)
  2578.     $(ADDMOD) ccfonts_ -font $(ccfonts6)
  2579.     $(ADDMOD) ccfonts_ -font $(ccfonts7)
  2580.     $(ADDMOD) ccfonts_ -font $(ccfonts8)
  2581.     $(ADDMOD) ccfonts_ -font $(ccfonts9)
  2582.     $(ADDMOD) ccfonts_ -font $(ccfonts10)
  2583.     $(ADDMOD) ccfonts_ -font $(ccfonts11)
  2584.     $(ADDMOD) ccfonts_ -font $(ccfonts12)
  2585.     $(ADDMOD) ccfonts_ -font $(ccfonts13)
  2586.     $(ADDMOD) ccfonts_ -font $(ccfonts14)
  2587.     $(ADDMOD) ccfonts_ -font $(ccfonts15)
  2588.     $(EXP)genconf ccfonts_.dev -n gs -f $(gconfigf_h)
  2589.  
  2590. # We separate icfontab.dev from ccfonts.dev so that a customer can put
  2591. # compiled fonts into a separate shared library.
  2592.  
  2593. icfontab=icfontab$(CONFIG)
  2594.  
  2595. # Define ccfont_table separately, so it can be set from the command line
  2596. # to select an alternate compiled font table.
  2597. ccfont_table=$(icfontab)
  2598.  
  2599. $(icfontab).dev: $(MAKEFILE) $(INT_MAK) $(ECHOGS_XE) $(icfontab).$(OBJ) \
  2600.   $(ccfonts1_) $(ccfonts2_) $(ccfonts3_) $(ccfonts4_) $(ccfonts5_) \
  2601.   $(ccfonts6_) $(ccfonts7_) $(ccfonts8_) $(ccfonts9_) $(ccfonts10_) \
  2602.   $(ccfonts11_) $(ccfonts12_) $(ccfonts13_) $(ccfonts14_) $(ccfonts15_)
  2603.     $(SETMOD) $(icfontab) -obj $(icfontab).$(OBJ)
  2604.     $(ADDMOD) $(icfontab) -obj $(ccfonts1_)
  2605.     $(ADDMOD) $(icfontab) -obj $(ccfonts2_)
  2606.     $(ADDMOD) $(icfontab) -obj $(ccfonts3_)
  2607.     $(ADDMOD) $(icfontab) -obj $(ccfonts4_)
  2608.     $(ADDMOD) $(icfontab) -obj $(ccfonts5_)
  2609.     $(ADDMOD) $(icfontab) -obj $(ccfonts6_)
  2610.     $(ADDMOD) $(icfontab) -obj $(ccfonts7_)
  2611.     $(ADDMOD) $(icfontab) -obj $(ccfonts8_)
  2612.     $(ADDMOD) $(icfontab) -obj $(ccfonts9_)
  2613.     $(ADDMOD) $(icfontab) -obj $(ccfonts10_)
  2614.     $(ADDMOD) $(icfontab) -obj $(ccfonts11_)
  2615.     $(ADDMOD) $(icfontab) -obj $(ccfonts12_)
  2616.     $(ADDMOD) $(icfontab) -obj $(ccfonts13_)
  2617.     $(ADDMOD) $(icfontab) -obj $(ccfonts14_)
  2618.     $(ADDMOD) $(icfontab) -obj $(ccfonts15_)
  2619.  
  2620. $(icfontab).$(OBJ): icfontab.c $(AK) $(ccfont_h) $(gconfigf_h)
  2621.     $(CP_) $(gconfigf_h) gconfigf.h
  2622.     $(CCCF) icfontab.c
  2623.  
  2624. # Strictly speaking, ccfonts shouldn't need to include type1,
  2625. # since one could choose to precompile only Type 0 fonts,
  2626. # but getting this exactly right would be too much work.
  2627. ccfonts=ccfonts$(CONFIG)
  2628. $(ccfonts).dev: $(MAKEFILE) $(INT_MAK) type1.dev iccfont.$(OBJ) \
  2629.   $(ccfont_table).dev
  2630.     $(SETMOD) $(ccfonts) -include type1
  2631.     $(ADDMOD) $(ccfonts) -include $(ccfont_table)
  2632.     $(ADDMOD) $(ccfonts) -obj iccfont.$(OBJ)
  2633.     $(ADDMOD) $(ccfonts) -oper ccfonts
  2634.     $(ADDMOD) $(ccfonts) -ps $(ccfonts_ps)
  2635.  
  2636. iccfont.$(OBJ): iccfont.c $(GH) $(string__h)\
  2637.  $(gsstruct_h) $(ccfont_h) $(errors_h)\
  2638.  $(ialloc_h) $(idict_h) $(ifont_h) $(iname_h) $(isave_h) $(iutil_h)\
  2639.  $(oper_h) $(ostack_h) $(store_h) $(stream_h) $(strimpl_h) $(sfilter_h) $(iscan_h)
  2640.     $(CCCF) iccfont.c
  2641.  
  2642. # ---------------- Compiled initialization code ---------------- #
  2643.  
  2644. # We select either iccinit0 or iccinit1 depending on COMPILE_INITS.
  2645.  
  2646. iccinit0.$(OBJ): iccinit0.c $(stdpre_h)
  2647.     $(CCCF) iccinit0.c
  2648.  
  2649. iccinit1.$(OBJ): gs_init.$(OBJ)
  2650.     $(CP_) gs_init.$(OBJ) iccinit1.$(OBJ)
  2651.  
  2652. # All the gs_*.ps files should be prerequisites of gs_init.c,
  2653. # but we don't have any convenient list of them.
  2654. gs_init.c: $(GS_INIT) $(GENINIT_XE) $(gconfig_h)
  2655.     $(EXP)geninit $(GS_INIT) $(gconfig_h) -c gs_init.c
  2656.  
  2657. gs_init.$(OBJ): gs_init.c $(stdpre_h)
  2658.     $(CCCF) gs_init.c
  2659.  
  2660. # ======================== PostScript Level 2 ======================== #
  2661.  
  2662. ### In addition to the true Level 2 configuration, we define a 'minimal'
  2663. ### Level 2 that can be used with -dDEBUG in the 16-bit Windows environment.
  2664. ### This also may require trimming down the sizes of the stacks in interp.c.
  2665.  
  2666. lev2min.dev: $(INT_MAK) $(ECHOGS_XE) \
  2667.   psbase.dev devctrl.dev color.dev \
  2668.   dps2lib.dev dps2read.dev fdecode.dev path1.dev type1.dev \
  2669.   psl2lib.dev psl2read.dev
  2670.     $(SETMOD) lev2min -include psbase devctrl color
  2671.     $(ADDMOD) lev2min -include dps2lib dps2read fdecode path1 type1
  2672.     $(ADDMOD) lev2min -include psl2lib psl2read
  2673.     $(ADDMOD) lev2min -emulator PostScript PostScriptLevel1 PostScriptLevel2
  2674.  
  2675. level2.dev: $(INT_MAK) $(ECHOGS_XE) \
  2676.  cidfont.dev cie.dev cmapread.dev compfont.dev dct.dev devctrl.dev dpsand2.dev\
  2677.  filter.dev level1.dev pattern.dev psl2lib.dev psl2read.dev sepr.dev\
  2678.  type42.dev xfilter.dev
  2679.     $(SETMOD) level2 -include cidfont cie cmapread compfont
  2680.     $(ADDMOD) level2 -include dct devctrl dpsand2 filter
  2681.     $(ADDMOD) level2 -include level1 pattern psl2lib psl2read
  2682.     $(ADDMOD) level2 -include sepr type42 xfilter
  2683.     $(ADDMOD) level2 -emulator PostScript PostScriptLevel2
  2684.  
  2685. # Define basic Level 2 language support.
  2686. # This is the minimum required for CMap and CIDFont support.
  2687.  
  2688. psl2int_=iutil2.$(OBJ) zmisc2.$(OBJ) zusparam.$(OBJ)
  2689. psl2int.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2int_) dps2int.dev
  2690.     $(SETMOD) psl2int $(psl2int_)
  2691.     $(ADDMOD) psl2int -include dps2int
  2692.     $(ADDMOD) psl2int -oper zmisc2 zusparam
  2693.     $(ADDMOD) psl2int -ps gs_lev2 gs_res
  2694.  
  2695. iutil2.$(OBJ): iutil2.c $(GH) $(memory__h) $(string__h)\
  2696.  $(gsparam_h) $(gsutil_h)\
  2697.  $(errors_h) $(opcheck_h) $(imemory_h) $(iutil_h) $(iutil2_h)
  2698.  
  2699. zmisc2.$(OBJ): zmisc2.c $(OP) $(memory__h) $(string__h)\
  2700.  $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2701.  $(ilevel_h) $(iname_h) $(iutil2_h) $(ivmspace_h) $(store_h)
  2702.  
  2703. # Note that zusparam includes both Level 1 and Level 2 operators.
  2704. zusparam.$(OBJ): zusparam.c $(OP) $(memory__h) $(string__h)\
  2705.  $(gscdefs_h) $(gsfont_h) $(gsstruct_h) $(gsutil_h) $(gxht_h)\
  2706.  $(ialloc_h) $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2707.  $(iname_h) $(iutil2_h) $(store_h)
  2708.  
  2709. # Define full Level 2 support.
  2710.  
  2711. psl2read_=zcolor2.$(OBJ) zcsindex.$(OBJ) zht2.$(OBJ) zimage2.$(OBJ)
  2712. # Note that zmisc2 includes both Level 1 and Level 2 operators.
  2713. psl2read.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2read_) psl2int.dev dps2read.dev
  2714.     $(SETMOD) psl2read $(psl2read_)
  2715.     $(ADDMOD) psl2read -include psl2int dps2read
  2716.     $(ADDMOD) psl2read -oper zcolor2_l2 zcsindex_l2
  2717.     $(ADDMOD) psl2read -oper zht2_l2 zimage2_l2
  2718.  
  2719. zcolor2.$(OBJ): zcolor2.c $(OP)\
  2720.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2721.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxpcolor_h)\
  2722.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2723.  $(store_h)
  2724.  
  2725. zcsindex.$(OBJ): zcsindex.c $(OP) $(memory__h) \
  2726.   $(gscolor_h) $(gsstruct_h) $(gxfixed_h) $(gxcolor2_h) $(gxcspace_h) $(gsmatrix_h) \
  2727.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2728.  
  2729. zht2.$(OBJ): zht2.c $(OP) \
  2730.   $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2731.   $(estack_h) $(ialloc_h) $(icolor_h) $(idict_h) $(idparam_h) $(igstate_h) \
  2732.   $(iht_h) $(store_h)
  2733.  
  2734. zimage2.$(OBJ): zimage2.c $(OP) $(math__h) $(memory__h)\
  2735.  $(gscolor_h) $(gscolor2_h) $(gscspace_h) $(gsimage_h) $(gsmatrix_h)\
  2736.  $(idict_h) $(idparam_h) $(iimage_h) $(ilevel_h) $(igstate_h)
  2737.  
  2738. # ---------------- Device control ---------------- #
  2739. # This is a catch-all for setpagedevice and IODevices.
  2740.  
  2741. devctrl_=zdevice2.$(OBJ) ziodev2.$(OBJ) zmedia2.$(OBJ) zdevcal.$(OBJ)
  2742. devctrl.dev: $(INT_MAK) $(ECHOGS_XE) $(devctrl_)
  2743.     $(SETMOD) devctrl $(devctrl_)
  2744.     $(ADDMOD) devctrl -oper zdevice2_l2 ziodev2_l2 zmedia2_l2
  2745.     $(ADDMOD) devctrl -iodev null ram calendar
  2746.     $(ADDMOD) devctrl -ps gs_setpd
  2747.  
  2748. zdevice2.$(OBJ): zdevice2.c $(OP) $(math__h) $(memory__h)\
  2749.  $(dstack_h) $(estack_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h) $(store_h)\
  2750.  $(gxdevice_h) $(gsstate_h)
  2751.  
  2752. ziodev2.$(OBJ): ziodev2.c $(OP) $(string__h) $(gp_h)\
  2753.  $(gxiodev_h) $(stream_h) $(files_h) $(iparam_h) $(iutil2_h) $(store_h)
  2754.  
  2755. zmedia2.$(OBJ): zmedia2.c $(OP) $(math__h) $(memory__h) \
  2756.   $(gsmatrix_h) $(idict_h) $(idparam_h) $(iname_h) $(store_h)
  2757.  
  2758. zdevcal.$(OBJ): zdevcal.c $(GH) $(time__h) \
  2759.   $(gxiodev_h) $(iparam_h) $(istack_h)
  2760.  
  2761. # ---------------- Filters other than the ones in sfilter.c ---------------- #
  2762.  
  2763. # Standard Level 2 decoding filters only.  The PDF configuration uses this.
  2764. fdecode_=scantab.$(OBJ) sfilter2.$(OBJ) zfdecode.$(OBJ)
  2765. fdecode.dev: $(INT_MAK) $(ECHOGS_XE) $(fdecode_) cfd.dev lzwd.dev pdiff.dev pngp.dev rld.dev
  2766.     $(SETMOD) fdecode $(fdecode_)
  2767.     $(ADDMOD) fdecode -include cfd lzwd pdiff pngp rld
  2768.     $(ADDMOD) fdecode -oper zfdecode
  2769.  
  2770. zfdecode.$(OBJ): zfdecode.c $(OP) $(memory__h)\
  2771.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2772.  $(sa85x_h) $(scf_h) $(scfx_h) $(sfilter_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) \
  2773.  $(store_h) $(stream_h) $(strimpl_h)
  2774.  
  2775. # Complete Level 2 filter capability.
  2776. filter_=zfilter2.$(OBJ)
  2777. filter.dev: $(INT_MAK) $(ECHOGS_XE) fdecode.dev $(filter_) cfe.dev lzwe.dev rle.dev
  2778.     $(SETMOD) filter -include fdecode
  2779.     $(ADDMOD) filter -obj $(filter_)
  2780.     $(ADDMOD) filter -include cfe lzwe rle
  2781.     $(ADDMOD) filter -oper zfilter2
  2782.  
  2783. zfilter2.$(OBJ): zfilter2.c $(OP) $(memory__h)\
  2784.   $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) $(store_h) \
  2785.   $(sfilter_h) $(scfx_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) $(strimpl_h)
  2786.  
  2787. # Extensions beyond Level 2 standard.
  2788. xfilter_=sbhc.$(OBJ) sbwbs.$(OBJ) shcgen.$(OBJ) smtf.$(OBJ) \
  2789.  zfilterx.$(OBJ)
  2790. xfilter.dev: $(INT_MAK) $(ECHOGS_XE) $(xfilter_) pcxd.dev pngp.dev
  2791.     $(SETMOD) xfilter $(xfilter_)
  2792.     $(ADDMOD) xfilter -include pcxd
  2793.     $(ADDMOD) xfilter -oper zfilterx
  2794.  
  2795. sbhc.$(OBJ): sbhc.c $(AK) $(memory__h) $(stdio__h)\
  2796.  $(gdebug_h) $(sbhc_h) $(shcgen_h) $(strimpl_h)
  2797.  
  2798. sbwbs.$(OBJ): sbwbs.c $(AK) $(stdio__h) $(memory__h) \
  2799.   $(gdebug_h) $(sbwbs_h) $(sfilter_h) $(strimpl_h)
  2800.  
  2801. shcgen.$(OBJ): shcgen.c $(AK) $(memory__h) $(stdio__h)\
  2802.  $(gdebug_h) $(gserror_h) $(gserrors_h) $(gsmemory_h)\
  2803.  $(scommon_h) $(shc_h) $(shcgen_h)
  2804.  
  2805. smtf.$(OBJ): smtf.c $(AK) $(stdio__h) \
  2806.   $(smtf_h) $(strimpl_h)
  2807.  
  2808. zfilterx.$(OBJ): zfilterx.c $(OP) $(memory__h)\
  2809.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h)\
  2810.  $(store_h) $(sfilter_h) $(sbhc_h) $(sbtx_h) $(sbwbs_h) $(shcgen_h)\
  2811.  $(smtf_h) $(spcxx_h) $(strimpl_h)
  2812.  
  2813. # ---------------- Binary tokens ---------------- #
  2814.  
  2815. btoken_=iscanbin.$(OBJ) zbseq.$(OBJ)
  2816. btoken.dev: $(INT_MAK) $(ECHOGS_XE) $(btoken_)
  2817.     $(SETMOD) btoken $(btoken_)
  2818.     $(ADDMOD) btoken -oper zbseq_l2
  2819.     $(ADDMOD) btoken -ps gs_btokn
  2820.  
  2821. bseq_h=bseq.h
  2822. btoken_h=btoken.h
  2823.  
  2824. iscanbin.$(OBJ): iscanbin.c $(GH) $(math__h) $(memory__h) $(errors_h)\
  2825.  $(gsutil_h) $(ialloc_h) $(ibnum_h) $(idict_h) $(iname_h)\
  2826.  $(iscan_h) $(iutil_h) $(ivmspace_h)\
  2827.  $(bseq_h) $(btoken_h) $(dstack_h) $(ostack_h)\
  2828.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2829.  
  2830. zbseq.$(OBJ): zbseq.c $(OP) $(memory__h)\
  2831.  $(ialloc_h) $(idict_h) $(isave_h)\
  2832.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)\
  2833.  $(iname_h) $(ibnum_h) $(btoken_h) $(bseq_h)
  2834.  
  2835. # ---------------- User paths & insideness testing ---------------- #
  2836.  
  2837. upath_=zupath.$(OBJ) ibnum.$(OBJ)
  2838. upath.dev: $(INT_MAK) $(ECHOGS_XE) $(upath_)
  2839.     $(SETMOD) upath $(upath_)
  2840.     $(ADDMOD) upath -oper zupath_l2
  2841.  
  2842. zupath.$(OBJ): zupath.c $(OP) \
  2843.   $(idict_h) $(dstack_h) $(iutil_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h) \
  2844.   $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstate_h) \
  2845.   $(gxfixed_h) $(gxdevice_h) $(gzpath_h) $(gzstate_h)
  2846.  
  2847. # -------- Additions common to Display PostScript and Level 2 -------- #
  2848.  
  2849. dpsand2.dev: $(INT_MAK) $(ECHOGS_XE) btoken.dev color.dev upath.dev dps2lib.dev dps2read.dev
  2850.     $(SETMOD) dpsand2 -include btoken color upath dps2lib dps2read
  2851.  
  2852. dps2int_=zvmem2.$(OBJ) zdps1.$(OBJ)
  2853. # Note that zvmem2 includes both Level 1 and Level 2 operators.
  2854. dps2int.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2int_)
  2855.     $(SETMOD) dps2int $(dps2int_)
  2856.     $(ADDMOD) dps2int -oper zvmem2 zdps1_l2
  2857.     $(ADDMOD) dps2int -ps gs_dps1
  2858.  
  2859. dps2read_=ibnum.$(OBJ) zchar2.$(OBJ)
  2860. dps2read.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2read_) dps2int.dev
  2861.     $(SETMOD) dps2read $(dps2read_)
  2862.     $(ADDMOD) dps2read -include dps2int
  2863.     $(ADDMOD) dps2read -oper ireclaim_l2 zchar2_l2
  2864.     $(ADDMOD) dps2read -ps gs_dps2
  2865.  
  2866. ibnum.$(OBJ): ibnum.c $(GH) $(math__h) $(memory__h)\
  2867.  $(errors_h) $(stream_h) $(ibnum_h) $(imemory_h) $(iutil_h)
  2868.  
  2869. zchar2.$(OBJ): zchar2.c $(OP) \
  2870.   $(gschar_h) $(gsmatrix_h) $(gspath_h) $(gsstruct_h) $(gxfixed_h) $(gxfont_h) \
  2871.   $(ialloc_h) $(ichar_h) $(estack_h) $(ifont_h) $(iname_h) $(igstate_h) \
  2872.   $(store_h) $(stream_h) $(ibnum_h)
  2873.  
  2874. zdps1.$(OBJ): zdps1.c $(OP) \
  2875.   $(gsmatrix_h) $(gspath_h) $(gspath2_h) $(gsstate_h) \
  2876.   $(ialloc_h) $(ivmspace_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h)
  2877.  
  2878. zvmem2.$(OBJ): zvmem2.c $(OP) \
  2879.   $(estack_h) $(ialloc_h) $(ivmspace_h) $(store_h)
  2880.  
  2881. # ---------------- Display PostScript ---------------- #
  2882.  
  2883. # The context machinery is NOT USABLE in this release.  DO NOT USE IT.
  2884. # IT WILL CAUSE AN IMMEDIATE CRASH.
  2885. #dps_=zdps.$(OBJ) zcontext.$(OBJ)
  2886. dps_=zdps.$(OBJ)
  2887. # Note that zcontext is omitted from the -oper list below.
  2888. dps.dev: $(INT_MAK) $(ECHOGS_XE) level2.dev $(dps_)
  2889.     $(SETMOD) dps -include level2
  2890.     $(ADDMOD) dps -obj $(dps_)
  2891.     $(ADDMOD) dps -oper zdps
  2892.     $(ADDMOD) dps -ps gs_dps
  2893.  
  2894. zdps.$(OBJ): zdps.c $(OP)\
  2895.  $(gsstate_h) $(igstate_h) $(iname_h) $(store_h)
  2896.  
  2897. zcontext.$(OBJ): zcontext.c $(OP) $(gp_h) $(memory__h)\
  2898.  $(gsexit_h) $(gsstruct_h) $(gsutil_h) $(gxalloc_h)\
  2899.  $(icontext_h) $(idict_h) $(igstate_h) $(istruct_h)\
  2900.  $(dstack_h) $(estack_h) $(ostack_h) $(store_h)
  2901.  
  2902. # ---------------- NeXT Display PostScript ---------------- #
  2903. #**************** NOT READY FOR USE YET ****************#
  2904.  
  2905. dpsnext_=zdpnext.$(OBJ)
  2906. dpsnext.dev: $(INT_MAK) $(ECHOGS_XE) dps.dev $(dpsnext_) gs_dpnxt.ps
  2907.     $(SETMOD) dpsnext -include dps
  2908.     $(ADDMOD) dpsnext -obj $(dpsnext_)
  2909.     $(ADDMOD) dpsnext -oper zdpnext
  2910.     $(ADDMOD) dpsnext -ps gs_dpnxt
  2911.  
  2912. zdpnext.$(OBJ): zdpnext.c $(OP)\
  2913.  $(gscspace_h) $(gsiparam_h) $(gsmatrix_h) $(gxcvalue_h) $(gxsample_h)\
  2914.  $(ialloc_h) $(igstate_h) $(iimage_h)
  2915.  
  2916. # -------- Composite (PostScript Type 0) font support -------- #
  2917.  
  2918. compfont.dev: $(INT_MAK) $(ECHOGS_XE) psf0lib.dev psf0read.dev
  2919.     $(SETMOD) compfont -include psf0lib psf0read
  2920.  
  2921. # We always include zfcmap.$(OBJ) because zfont0.c refers to it,
  2922. # and it's not worth the trouble to exclude.
  2923. psf0read_=zchar2.$(OBJ) zfcmap.$(OBJ) zfont0.$(OBJ)
  2924. psf0read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf0read_)
  2925.     $(SETMOD) psf0read $(psf0read_)
  2926.     $(ADDMOD) psf0read -oper zfont0 zchar2 zfcmap
  2927.  
  2928. zfcmap.$(OBJ): zfcmap.c $(OP)\
  2929.  $(gsmatrix_h) $(gsstruct_h) $(gsutil_h)\
  2930.  $(gxfcmap_h) $(gxfont_h)\
  2931.  $(ialloc_h) $(idict_h) $(idparam_h) $(ifont_h) $(iname_h) $(store_h)
  2932.  
  2933. zfont0.$(OBJ): zfont0.c $(OP)\
  2934.  $(gschar_h) $(gsstruct_h)\
  2935.  $(gxdevice_h) $(gxfcmap_h) $(gxfixed_h) $(gxfont_h) $(gxfont0_h) $(gxmatrix_h)\
  2936.  $(gzstate_h)\
  2937.  $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h)\
  2938.  $(store_h)
  2939.  
  2940. # ---------------- CMap support ---------------- #
  2941. # Note that this requires at least minimal Level 2 support,
  2942. # because it requires findresource.
  2943.  
  2944. cmapread_=zfcmap.$(OBJ)
  2945. cmapread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmapread_) cmaplib.dev psl2int.dev
  2946.     $(SETMOD) cmapread $(cmapread_)
  2947.     $(ADDMOD) cmapread -include cmaplib psl2int
  2948.     $(ADDMOD) cmapread -oper zfcmap
  2949.     $(ADDMOD) cmapread -ps gs_cmap
  2950.  
  2951. # ---------------- CIDFont support ---------------- #
  2952. # Note that this requires at least minimal Level 2 support,
  2953. # because it requires findresource.
  2954.  
  2955. cidread_=zcid.$(OBJ)
  2956. cidfont.dev: $(INT_MAK) $(ECHOGS_XE) psf1read.dev psl2int.dev type42.dev\
  2957.  $(cidread_)
  2958.     $(SETMOD) cidfont $(cidread_)
  2959.     $(ADDMOD) cidfont -include psf1read psl2int type42
  2960.     $(ADDMOD) cidfont -ps gs_cidfn
  2961.     $(ADDMOD) cidfont -oper zcid
  2962.  
  2963. zcid.$(OBJ): zcid.c $(OP)\
  2964.  $(gsccode_h) $(gsmatrix_h) $(gxfont_h)\
  2965.  $(bfont_h) $(iname_h) $(store_h)
  2966.  
  2967. # ---------------- CIE color ---------------- #
  2968.  
  2969. cieread_=zcie.$(OBJ) zcrd.$(OBJ)
  2970. cie.dev: $(INT_MAK) $(ECHOGS_XE) $(cieread_) cielib.dev
  2971.     $(SETMOD) cie $(cieread_)
  2972.     $(ADDMOD) cie -oper zcie_l2 zcrd_l2
  2973.     $(ADDMOD) cie -include cielib
  2974.  
  2975. icie_h=icie.h
  2976.  
  2977. zcie.$(OBJ): zcie.c $(OP) $(math__h) $(memory__h) \
  2978.   $(gscolor2_h) $(gscie_h) $(gsstruct_h) $(gxcspace_h) \
  2979.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2980.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2981.  
  2982. zcrd.$(OBJ): zcrd.c $(OP) $(math__h) \
  2983.   $(gscspace_h) $(gscolor2_h) $(gscie_h) $(gsstruct_h) \
  2984.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2985.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2986.  
  2987. # ---------------- Pattern color ---------------- #
  2988.  
  2989. pattern.dev: $(INT_MAK) $(ECHOGS_XE) patlib.dev patread.dev
  2990.     $(SETMOD) pattern -include patlib patread
  2991.  
  2992. patread_=zpcolor.$(OBJ)
  2993. patread.dev: $(INT_MAK) $(ECHOGS_XE) $(patread_)
  2994.     $(SETMOD) patread $(patread_)
  2995.     $(ADDMOD) patread -oper zpcolor_l2
  2996.  
  2997. zpcolor.$(OBJ): zpcolor.c $(OP)\
  2998.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2999.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  3000.    $(gxfixed_h) $(gxpcolor_h)\
  3001.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  3002.  $(store_h)
  3003.  
  3004. # ---------------- Separation color ---------------- #
  3005.  
  3006. seprread_=zcssepr.$(OBJ)
  3007. sepr.dev: $(INT_MAK) $(ECHOGS_XE) $(seprread_) seprlib.dev
  3008.     $(SETMOD) sepr $(seprread_)
  3009.     $(ADDMOD) sepr -oper zcssepr_l2
  3010.     $(ADDMOD) sepr -include seprlib
  3011.  
  3012. zcssepr.$(OBJ): zcssepr.c $(OP) \
  3013.   $(gscolor_h) $(gscsepr_h) $(gsmatrix_h) $(gsstruct_h) \
  3014.   $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) \
  3015.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3016.  
  3017. # ---------------- DCT filters ---------------- #
  3018. # The definitions for jpeg*.dev are in jpeg.mak.
  3019.  
  3020. dct.dev: $(INT_MAK) $(ECHOGS_XE) dcte.dev dctd.dev
  3021.     $(SETMOD) dct -include dcte dctd
  3022.  
  3023. # Common code
  3024.  
  3025. dctc_=zfdctc.$(OBJ)
  3026.  
  3027. zfdctc.$(OBJ): zfdctc.c $(GH) $(memory__h) $(stdio__h)\
  3028.  $(errors_h) $(opcheck_h)\
  3029.  $(idict_h) $(idparam_h) $(imemory_h) $(ipacked_h) $(iutil_h)\
  3030.  $(sdct_h) $(sjpeg_h) $(strimpl_h)\
  3031.  jpeglib.h
  3032.  
  3033. # Encoding (compression)
  3034.  
  3035. dcte_=$(dctc_) zfdcte.$(OBJ)
  3036. dcte.dev: $(INT_MAK) $(ECHOGS_XE) sdcte.dev $(dcte_)
  3037.     $(SETMOD) dcte -include sdcte
  3038.     $(ADDMOD) dcte -obj $(dcte_)
  3039.     $(ADDMOD) dcte -oper zfdcte
  3040.  
  3041. zfdcte.$(OBJ): zfdcte.c $(OP) $(memory__h) $(stdio__h)\
  3042.   $(idict_h) $(idparam_h) $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3043.   jpeglib.h
  3044.  
  3045. # Decoding (decompression)
  3046.  
  3047. dctd_=$(dctc_) zfdctd.$(OBJ)
  3048. dctd.dev: $(INT_MAK) $(ECHOGS_XE) sdctd.dev $(dctd_)
  3049.     $(SETMOD) dctd -include sdctd
  3050.     $(ADDMOD) dctd -obj $(dctd_)
  3051.     $(ADDMOD) dctd -oper zfdctd
  3052.  
  3053. zfdctd.$(OBJ): zfdctd.c $(OP) $(memory__h) $(stdio__h)\
  3054.  $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3055.  jpeglib.h
  3056.  
  3057. # ---------------- zlib/Flate filters ---------------- #
  3058.  
  3059. fzlib.dev: $(INT_MAK) $(ECHOGS_XE) zfzlib.$(OBJ) szlibe.dev szlibd.dev
  3060.     $(SETMOD) fzlib -include szlibe szlibd
  3061.     $(ADDMOD) fzlib -obj zfzlib.$(OBJ)
  3062.     $(ADDMOD) fzlib -oper zfzlib
  3063.  
  3064. zfzlib.$(OBJ): zfzlib.c $(OP) \
  3065.   $(errors_h) $(idict_h) $(ifilter_h) \
  3066.   $(spdiffx_h) $(spngpx_h) $(strimpl_h) $(szlibx_h)
  3067.     $(CCCZ) zfzlib.c
  3068.  
  3069. # ================================ PDF ================================ #
  3070.  
  3071. # We need most of the Level 2 interpreter to do PDF, but not all of it.
  3072. # In fact, we don't even need all of a Level 1 interpreter.
  3073.  
  3074. # Because of the way the PDF encodings are defined, they must get loaded
  3075. # before we install the Level 2 resource machinery.
  3076. # On the other hand, the PDF .ps files must get loaded after
  3077. # level2dict is defined.
  3078. pdfmin.dev: $(INT_MAK) $(ECHOGS_XE)\
  3079.  psbase.dev color.dev dps2lib.dev dps2read.dev\
  3080.  fdecode.dev type1.dev pdffonts.dev psl2lib.dev psl2read.dev pdfread.dev
  3081.     $(SETMOD) pdfmin -include psbase color dps2lib dps2read
  3082.     $(ADDMOD) pdfmin -include fdecode type1
  3083.     $(ADDMOD) pdfmin -include pdffonts psl2lib psl2read pdfread
  3084.     $(ADDMOD) pdfmin -emulator PDF
  3085.  
  3086. pdf.dev: $(INT_MAK) $(ECHOGS_XE)\
  3087.  pdfmin.dev cff.dev cidfont.dev cie.dev compfont.dev cmapread.dev dctd.dev\
  3088.  ttfont.dev type2.dev
  3089.     $(SETMOD) pdf -include pdfmin cff cidfont cie cmapread compfont dctd
  3090.     $(ADDMOD) pdf -include ttfont type2
  3091.  
  3092. # Reader only
  3093.  
  3094. pdffonts.dev: $(INT_MAK) $(ECHOGS_XE) \
  3095.   gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps
  3096.     $(SETMOD) pdffonts -ps gs_mex_e gs_mro_e gs_pdf_e gs_wan_e
  3097.  
  3098. # pdf_2ps must be the last .ps file loaded.
  3099. pdfread.dev: $(INT_MAK) $(ECHOGS_XE) fzlib.dev
  3100.     $(SETMOD) pdfread -include fzlib
  3101.     $(ADDMOD) pdfread -ps gs_pdf gs_l2img
  3102.     $(ADDMOD) pdfread -ps pdf_base pdf_draw pdf_font pdf_main pdf_sec
  3103.     $(ADDMOD) pdfread -ps pdf_2ps
  3104.  
  3105. # ============================= Main program ============================== #
  3106.  
  3107. gs.$(OBJ): gs.c $(GH) \
  3108.   $(imain_h) $(imainarg_h) $(iminst_h)
  3109.  
  3110. icontext.$(OBJ): icontext.c $(GH)\
  3111.  $(gsstruct_h) $(gxalloc_h)\
  3112.  $(dstack_h) $(estack_h) $(ostack_h)\
  3113.  $(icontext_h) $(igstate_h) $(store_h)
  3114.  
  3115. imainarg.$(OBJ): imainarg.c $(GH) $(ctype__h) $(memory__h) $(string__h) \
  3116.   $(gp_h) \
  3117.   $(gsargs_h) $(gscdefs_h) $(gsdevice_h) $(gsmdebug_h) $(gxdevice_h) $(gxdevmem_h) \
  3118.   $(errors_h) $(estack_h) $(files_h) \
  3119.   $(ialloc_h) $(imain_h) $(imainarg_h) $(iminst_h) \
  3120.   $(iname_h) $(interp_h) $(iscan_h) $(iutil_h) $(ivmspace_h) \
  3121.   $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3122.  
  3123. imain.$(OBJ): imain.c $(GH) $(memory__h) $(string__h)\
  3124.  $(gp_h) $(gslib_h) $(gsmatrix_h) $(gsutil_h) $(gxdevice_h)\
  3125.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3126.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(interp_h)\
  3127.  $(isave_h) $(iscan_h) $(ivmspace_h)\
  3128.  $(main_h) $(oper_h) $(ostack_h)\
  3129.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3130.  
  3131. interp.$(OBJ): interp.c $(GH) $(memory__h) $(string__h)\
  3132.  $(gsstruct_h)\
  3133.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3134.  $(ialloc_h) $(iastruct_h) $(inamedef_h) $(idict_h) $(interp_h) $(ipacked_h)\
  3135.  $(iscan_h) $(isave_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  3136.  $(oper_h) $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3137.     $(CCINT) interp.c
  3138.  
  3139. ireclaim.$(OBJ): ireclaim.c $(GH) \
  3140.   $(errors_h) $(gsstruct_h) $(iastate_h) $(opdef_h) $(store_h) \
  3141.   $(dstack_h) $(estack_h) $(ostack_h)
  3142. #    Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3143. # This file is part of Aladdin Ghostscript.
  3144. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3145. # or distributor accepts any responsibility for the consequences of using it,
  3146. # or for whether it serves any particular purpose or works at all, unless he
  3147. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3148. # License (the "License") for full details.
  3149. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3150. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3151. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3152. # under certain conditions described in the License.  Among other things, the
  3153. # License requires that the copyright notice and this notice be preserved on
  3154. # all copies.
  3155.  
  3156. # makefile for Independent JPEG Group library code.
  3157.  
  3158. # NOTE: This makefile is only known to work with the following versions
  3159. # of the IJG library: 6, 6a.
  3160. # As of May 11, 1996, version 6a is the current version.
  3161. #
  3162. # You can get the IJG library by Internet anonymous FTP from the following
  3163. # places:
  3164. #    Standard distribution (tar + gzip format, Unix end-of-line):
  3165. #        ftp.uu.net:/graphics/jpeg/jpegsrc.v*.tar.gz
  3166. #        ftp.cs.wisc.edu:/ghost/jpegsrc.v*.tar.gz
  3167. #    MS-DOS archive (PKZIP a.k.a. zip format, MS-DOS end-of-line):
  3168. #        ftp.simtel.net:/pub/simtelnet/msdos/graphics/jpegsr*.zip
  3169. #        ftp.cs.wisc.edu:/ghost/jpeg-*.zip
  3170. # The first site named above (ftp.uu.net and ftp.simtel.net) is supposed
  3171. # to be the master distribution site, so it may have a more up-to-date
  3172. # version; the ftp.cs.wisc.edu site is the master distribution site for
  3173. # Ghostscript, so it will always have IJG library versions known to be
  3174. # compatible with Ghostscript.
  3175. #
  3176. # If the version number, and hence the subdirectory name, changes, you
  3177. # will probably want to change the definitions of JSRCDIR and possibly
  3178. # JVERSION (in the platform-specific makefile, not here) to reflect this,
  3179. # since that way you can use the IJG archive without change.
  3180. #
  3181. # NOTE: For some obscure reason (probably a bug in djtarx), if you are
  3182. # compiling on a DesqView/X system, you should use the zip version of the
  3183. # IJG library, not the tar.gz version.
  3184.  
  3185. # Define the name of this makefile.
  3186. JPEG_MAK=jpeg.mak
  3187.  
  3188. # JSRCDIR is defined in the platform-specific makefile, not here,
  3189. # as the directory where the IJG library sources are stored.
  3190. #JSRCDIR=jpeg-6a
  3191. # JVERSION is defined in the platform-specific makefile, not here,
  3192. # as the IJG library major version number (currently "5" or "6").
  3193. #JVERSION=6
  3194.  
  3195. JSRC=$(JSRCDIR)$(D)
  3196. # CCCJ is defined in gs.mak.
  3197. #CCCJ=$(CCC) -I. -I$(JSRCDIR)
  3198.  
  3199. # We keep all of the IJG code in a separate directory so as not to
  3200. # inadvertently mix it up with Aladdin Enterprises' own code.
  3201. # However, we need our own version of jconfig.h, and our own "wrapper" for
  3202. # jmorecfg.h.  We also need a substitute for jerror.c, in order to
  3203. # keep the error strings out of the automatic data segment in
  3204. # 16-bit environments.  For v5*, we also need our own version of jpeglib.h
  3205. # in order to change MAX_BLOCKS_IN_MCU for Adobe compatibility.
  3206. # (This need will go away when IJG v6 is released.)
  3207.  
  3208. # Because this file is included after lib.mak, we can't use _h macros
  3209. # to express indirect dependencies; instead, we build the dependencies
  3210. # into the rules for copying the files.
  3211. jconfig_h=jconfig.h
  3212. jerror_h=jerror.h
  3213. jmorecfg_h=jmorecfg.h
  3214. jpeglib_h=jpeglib.h
  3215.  
  3216. jconfig.h: gsjconf.h $(std_h)
  3217.     $(CP_) gsjconf.h jconfig.h
  3218.  
  3219. jmorecfg.h: gsjmorec.h jmcorig.h
  3220.     $(CP_) gsjmorec.h jmorecfg.h
  3221.  
  3222. jmcorig.h: $(JSRC)jmorecfg.h
  3223.     $(CP_) $(JSRC)jmorecfg.h jmcorig.h
  3224.  
  3225. jpeglib.h: jlib$(JVERSION).h jconfig.h jmorecfg.h
  3226.     $(CP_) jlib$(JVERSION).h jpeglib.h
  3227.  
  3228. jlib5.h: gsjpglib.h
  3229.     $(CP_) gsjpglib.h jlib5.h
  3230.  
  3231. jlib6.h: $(JSRC)jpeglib.h
  3232.     $(CP_) $(JSRC)jpeglib.h jlib6.h
  3233.  
  3234. # To ensure that the compiler finds our versions of jconfig.h and jmorecfg.h,
  3235. # regardless of the compiler's search rule, we must copy up all .c files,
  3236. # and all .h files that include either of these files, directly or
  3237. # indirectly.  The only such .h files currently are jinclude.h and jpeglib.h.
  3238. # (Currently, we supply our own version of jpeglib.h -- see above.)
  3239. # Also, to avoid including the JSRCDIR directory name in our source files,
  3240. # we must also copy up any other .h files that our own code references.
  3241. # Currently, the only such .h files are jerror.h and jversion.h.
  3242.  
  3243. JHCOPY=jinclude.h jpeglib.h jerror.h jversion.h
  3244.  
  3245. jinclude.h: $(JSRC)jinclude.h
  3246.     $(CP_) $(JSRC)jinclude.h jinclude.h
  3247.  
  3248. #jpeglib.h: $(JSRC)jpeglib.h
  3249. #    $(CP_) $(JSRC)jpeglib.h jpeglib.h
  3250.  
  3251. jerror.h: $(JSRC)jerror.h
  3252.     $(CP_) $(JSRC)jerror.h jerror.h
  3253.  
  3254. jversion.h: $(JSRC)jversion.h
  3255.     $(CP_) $(JSRC)jversion.h jversion.h
  3256.  
  3257. # In order to avoid having to keep the dependency lists for the IJG code
  3258. # accurate, we simply make all of them depend on the only files that
  3259. # we are ever going to change, and on all the .h files that must be copied up.
  3260. # This is too conservative, but only hurts us if we are changing our own
  3261. # j*.h files, which happens only rarely during development.
  3262.  
  3263. JDEP=$(AK) $(jconfig_h) $(jerror_h) $(jmorecfg_h) $(JHCOPY)
  3264.  
  3265. # Code common to compression and decompression.
  3266.  
  3267. jpegc_=jcomapi.$(OBJ) jutils.$(OBJ) sjpegerr.$(OBJ) jmemmgr.$(OBJ)
  3268. jpegc.dev: $(JPEG_MAK) $(ECHOGS_XE) $(jpegc_)
  3269.     $(SETMOD) jpegc $(jpegc_)
  3270.  
  3271. jcomapi.$(OBJ): $(JSRC)jcomapi.c $(JDEP)
  3272.     $(CP_) $(JSRC)jcomapi.c .
  3273.     $(CCCJ) jcomapi.c
  3274.     $(RM_) jcomapi.c
  3275.  
  3276. jutils.$(OBJ): $(JSRC)jutils.c $(JDEP)
  3277.     $(CP_) $(JSRC)jutils.c .
  3278.     $(CCCJ) jutils.c
  3279.     $(RM_) jutils.c
  3280.  
  3281. # Note that sjpegerr replaces jerror.
  3282. sjpegerr.$(OBJ): sjpegerr.c $(JDEP)
  3283.     $(CCCF) sjpegerr.c
  3284.  
  3285. jmemmgr.$(OBJ): $(JSRC)jmemmgr.c $(JDEP)
  3286.     $(CP_) $(JSRC)jmemmgr.c .
  3287.     $(CCCJ) jmemmgr.c
  3288.     $(RM_) jmemmgr.c
  3289.  
  3290. # Encoding (compression) code.
  3291.  
  3292. jpege.dev: jpege$(JVERSION).dev
  3293.     $(CP_) jpege$(JVERSION).dev jpege.dev
  3294.  
  3295. jpege5=jcapi.$(OBJ)
  3296. jpege6=jcapimin.$(OBJ) jcapistd.$(OBJ) jcinit.$(OBJ)
  3297.  
  3298. jpege_1=jccoefct.$(OBJ) jccolor.$(OBJ) jcdctmgr.$(OBJ) 
  3299. jpege_2=jchuff.$(OBJ) jcmainct.$(OBJ) jcmarker.$(OBJ) jcmaster.$(OBJ)
  3300. jpege_3=jcparam.$(OBJ) jcprepct.$(OBJ) jcsample.$(OBJ) jfdctint.$(OBJ)
  3301.  
  3302. jpege5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege5) $(jpege_1) $(jpege_2) $(jpege_3)
  3303.     $(SETMOD) jpege5 $(jpege5)
  3304.     $(ADDMOD) jpege5 -include jpegc
  3305.     $(ADDMOD) jpege5 -obj $(jpege_1)
  3306.     $(ADDMOD) jpege5 -obj $(jpege_2)
  3307.     $(ADDMOD) jpege5 -obj $(jpege_3)
  3308.  
  3309. jpege6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege6) $(jpege_1) $(jpege_2) $(jpege_3)
  3310.     $(SETMOD) jpege6 $(jpege6)
  3311.     $(ADDMOD) jpege6 -include jpegc
  3312.     $(ADDMOD) jpege6 -obj $(jpege_1)
  3313.     $(ADDMOD) jpege6 -obj $(jpege_2)
  3314.     $(ADDMOD) jpege6 -obj $(jpege_3)
  3315.  
  3316. # jcapi.c is v5* only
  3317. jcapi.$(OBJ): $(JSRC)jcapi.c $(JDEP)
  3318.     $(CP_) $(JSRC)jcapi.c .
  3319.     $(CCCJ) jcapi.c
  3320.     $(RM_) jcapi.c
  3321.   
  3322. # jcapimin.c is new in v6
  3323. jcapimin.$(OBJ): $(JSRC)jcapimin.c $(JDEP)
  3324.     $(CP_) $(JSRC)jcapimin.c .
  3325.     $(CCCJ) jcapimin.c
  3326.     $(RM_) jcapimin.c
  3327.  
  3328. # jcapistd.c is new in v6
  3329. jcapistd.$(OBJ): $(JSRC)jcapistd.c $(JDEP)
  3330.     $(CP_) $(JSRC)jcapistd.c .
  3331.     $(CCCJ) jcapistd.c
  3332.     $(RM_) jcapistd.c
  3333.  
  3334. # jcinit.c is new in v6
  3335. jcinit.$(OBJ): $(JSRC)jcinit.c $(JDEP)
  3336.     $(CP_) $(JSRC)jcinit.c .
  3337.     $(CCCJ) jcinit.c
  3338.     $(RM_) jcinit.c
  3339.  
  3340. jccoefct.$(OBJ): $(JSRC)jccoefct.c $(JDEP)
  3341.     $(CP_) $(JSRC)jccoefct.c .
  3342.     $(CCCJ) jccoefct.c
  3343.     $(RM_) jccoefct.c
  3344.  
  3345. jccolor.$(OBJ): $(JSRC)jccolor.c $(JDEP)
  3346.     $(CP_) $(JSRC)jccolor.c .
  3347.     $(CCCJ) jccolor.c
  3348.     $(RM_) jccolor.c
  3349.  
  3350. jcdctmgr.$(OBJ): $(JSRC)jcdctmgr.c $(JDEP)
  3351.     $(CP_) $(JSRC)jcdctmgr.c .
  3352.     $(CCCJ) jcdctmgr.c
  3353.     $(RM_) jcdctmgr.c
  3354.  
  3355. jchuff.$(OBJ): $(JSRC)jchuff.c $(JDEP)
  3356.     $(CP_) $(JSRC)jchuff.c .
  3357.     $(CCCJ) jchuff.c
  3358.     $(RM_) jchuff.c
  3359.  
  3360. jcmainct.$(OBJ): $(JSRC)jcmainct.c $(JDEP)
  3361.     $(CP_) $(JSRC)jcmainct.c .
  3362.     $(CCCJ) jcmainct.c
  3363.     $(RM_) jcmainct.c
  3364.  
  3365. jcmarker.$(OBJ): $(JSRC)jcmarker.c $(JDEP)
  3366.     $(CP_) $(JSRC)jcmarker.c .
  3367.     $(CCCJ) jcmarker.c
  3368.     $(RM_) jcmarker.c
  3369.  
  3370. jcmaster.$(OBJ): $(JSRC)jcmaster.c $(JDEP)
  3371.     $(CP_) $(JSRC)jcmaster.c .
  3372.     $(CCCJ) jcmaster.c
  3373.     $(RM_) jcmaster.c
  3374.  
  3375. jcparam.$(OBJ): $(JSRC)jcparam.c $(JDEP)
  3376.     $(CP_) $(JSRC)jcparam.c .
  3377.     $(CCCJ) jcparam.c
  3378.     $(RM_) jcparam.c
  3379.  
  3380. jcprepct.$(OBJ): $(JSRC)jcprepct.c $(JDEP)
  3381.     $(CP_) $(JSRC)jcprepct.c .
  3382.     $(CCCJ) jcprepct.c
  3383.     $(RM_) jcprepct.c
  3384.  
  3385. jcsample.$(OBJ): $(JSRC)jcsample.c $(JDEP)
  3386.     $(CP_) $(JSRC)jcsample.c .
  3387.     $(CCCJ) jcsample.c
  3388.     $(RM_) jcsample.c
  3389.  
  3390. jfdctint.$(OBJ): $(JSRC)jfdctint.c $(JDEP)
  3391.     $(CP_) $(JSRC)jfdctint.c .
  3392.     $(CCCJ) jfdctint.c
  3393.     $(RM_) jfdctint.c
  3394.  
  3395. # Decompression code
  3396.  
  3397. jpegd.dev: jpegd$(JVERSION).dev
  3398.     $(CP_) jpegd$(JVERSION).dev jpegd.dev
  3399.  
  3400. jpegd5=jdapi.$(OBJ)
  3401. jpegd6=jdapimin.$(OBJ) jdapistd.$(OBJ) jdinput.$(OBJ) jdphuff.$(OBJ)
  3402.  
  3403. jpegd_1=jdcoefct.$(OBJ) jdcolor.$(OBJ)
  3404. jpegd_2=jddctmgr.$(OBJ) jdhuff.$(OBJ) jdmainct.$(OBJ) jdmarker.$(OBJ)
  3405. jpegd_3=jdmaster.$(OBJ) jdpostct.$(OBJ) jdsample.$(OBJ) jidctint.$(OBJ)
  3406.  
  3407. jpegd5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd5) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3408.     $(SETMOD) jpegd5 $(jpegd5)
  3409.     $(ADDMOD) jpegd5 -include jpegc
  3410.     $(ADDMOD) jpegd5 -obj $(jpegd_1)
  3411.     $(ADDMOD) jpegd5 -obj $(jpegd_2)
  3412.     $(ADDMOD) jpegd5 -obj $(jpegd_3)
  3413.  
  3414. jpegd6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd6) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3415.     $(SETMOD) jpegd6 $(jpegd6)
  3416.     $(ADDMOD) jpegd6 -include jpegc
  3417.     $(ADDMOD) jpegd6 -obj $(jpegd_1)
  3418.     $(ADDMOD) jpegd6 -obj $(jpegd_2)
  3419.     $(ADDMOD) jpegd6 -obj $(jpegd_3)
  3420.  
  3421. # jdapi.c is v5* only
  3422. jdapi.$(OBJ): $(JSRC)jdapi.c $(JDEP)
  3423.     $(CP_) $(JSRC)jdapi.c .
  3424.     $(CCCJ) jdapi.c
  3425.     $(RM_) jdapi.c
  3426.  
  3427. # jdapimin.c is new in v6
  3428. jdapimin.$(OBJ): $(JSRC)jdapimin.c $(JDEP)
  3429.     $(CP_) $(JSRC)jdapimin.c .
  3430.     $(CCCJ) jdapimin.c
  3431.     $(RM_) jdapimin.c
  3432.  
  3433. # jdapistd.c is new in v6
  3434. jdapistd.$(OBJ): $(JSRC)jdapistd.c $(JDEP)
  3435.     $(CP_) $(JSRC)jdapistd.c .
  3436.     $(CCCJ) jdapistd.c
  3437.     $(RM_) jdapistd.c
  3438.  
  3439. jdcoefct.$(OBJ): $(JSRC)jdcoefct.c $(JDEP)
  3440.     $(CP_) $(JSRC)jdcoefct.c .
  3441.     $(CCCJ) jdcoefct.c
  3442.     $(RM_) jdcoefct.c
  3443.  
  3444. jdcolor.$(OBJ): $(JSRC)jdcolor.c $(JDEP)
  3445.     $(CP_) $(JSRC)jdcolor.c .
  3446.     $(CCCJ) jdcolor.c
  3447.     $(RM_) jdcolor.c
  3448.  
  3449. jddctmgr.$(OBJ): $(JSRC)jddctmgr.c $(JDEP)
  3450.     $(CP_) $(JSRC)jddctmgr.c .
  3451.     $(CCCJ) jddctmgr.c
  3452.     $(RM_) jddctmgr.c
  3453.  
  3454. jdhuff.$(OBJ): $(JSRC)jdhuff.c $(JDEP)
  3455.     $(CP_) $(JSRC)jdhuff.c .
  3456.     $(CCCJ) jdhuff.c
  3457.     $(RM_) jdhuff.c
  3458.  
  3459. # jdinput.c is new in v6
  3460. jdinput.$(OBJ): $(JSRC)jdinput.c $(JDEP)
  3461.     $(CP_) $(JSRC)jdinput.c .
  3462.     $(CCCJ) jdinput.c
  3463.     $(RM_) jdinput.c
  3464.  
  3465. jdmainct.$(OBJ): $(JSRC)jdmainct.c $(JDEP)
  3466.     $(CP_) $(JSRC)jdmainct.c .
  3467.     $(CCCJ) jdmainct.c
  3468.     $(RM_) jdmainct.c
  3469.  
  3470. jdmarker.$(OBJ): $(JSRC)jdmarker.c $(JDEP)
  3471.     $(CP_) $(JSRC)jdmarker.c .
  3472.     $(CCCJ) jdmarker.c
  3473.     $(RM_) jdmarker.c
  3474.  
  3475. jdmaster.$(OBJ): $(JSRC)jdmaster.c $(JDEP)
  3476.     $(CP_) $(JSRC)jdmaster.c .
  3477.     $(CCCJ) jdmaster.c
  3478.     $(RM_) jdmaster.c
  3479.  
  3480. # jdphuff.c is new in v6
  3481. jdphuff.$(OBJ): $(JSRC)jdphuff.c $(JDEP)
  3482.     $(CP_) $(JSRC)jdphuff.c .
  3483.     $(CCCJ) jdphuff.c
  3484.     $(RM_) jdphuff.c
  3485.  
  3486. jdpostct.$(OBJ): $(JSRC)jdpostct.c $(JDEP)
  3487.     $(CP_) $(JSRC)jdpostct.c .
  3488.     $(CCCJ) jdpostct.c
  3489.     $(RM_) jdpostct.c
  3490.  
  3491. jdsample.$(OBJ): $(JSRC)jdsample.c $(JDEP)
  3492.     $(CP_) $(JSRC)jdsample.c .
  3493.     $(CCCJ) jdsample.c
  3494.     $(RM_) jdsample.c
  3495.  
  3496. jidctint.$(OBJ): $(JSRC)jidctint.c $(JDEP)
  3497.     $(CP_) $(JSRC)jidctint.c .
  3498.     $(CCCJ) jidctint.c
  3499.     $(RM_) jidctint.c
  3500. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3501. # This file is part of Aladdin Ghostscript.
  3502. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3503. # or distributor accepts any responsibility for the consequences of using it,
  3504. # or for whether it serves any particular purpose or works at all, unless he
  3505. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3506. # License (the "License") for full details.
  3507. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3508. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3509. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3510. # under certain conditions described in the License.  Among other things, the
  3511. # License requires that the copyright notice and this notice be preserved on
  3512. # all copies.
  3513.  
  3514. # makefile for PNG (Portable Network Graphics) code.
  3515.  
  3516. # This partial makefile compiles the png library for use in the Ghostscript
  3517. # PNG drivers.  You can get the source code for this library from:
  3518. #   ftp://swrinde.nde.swri.edu/pub/png/src/
  3519. # The makefile is known to work with the following library versions:
  3520. # 0.88, 0.89, 0.90, 0.95, and 0.96.  NOTE: the archive for libpng 0.95 may
  3521. # be inconsistent: if you have compilation problems, use an older version.
  3522. # Please see Ghostscript's `make.txt' file for instructions about how to
  3523. # unpack these archives.
  3524. #
  3525. # The specification for the PNG file format is available from:
  3526. #   http://www.group42.com/png.htm
  3527. #   http://www.w3.org/pub/WWW/TR/WD-png
  3528.  
  3529. # Define the name of this makefile.
  3530. LIBPNG_MAK=libpng.mak
  3531.  
  3532. # PSRCDIR is defined in the platform-specific makefile, not here,
  3533. # as the directory where the PNG library sources are stored.
  3534. #PSRCDIR=libpng
  3535. # PVERSION is defined in the platform-specific makefile, not here,
  3536. # as the libpng version number ("88", "89", "90", "95", or "96").
  3537. #PVERSION=96
  3538.  
  3539. PSRC=$(PSRCDIR)$(D)
  3540. # CCCP is defined in gs.mak.
  3541. #CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR)
  3542.  
  3543. # We keep all of the PNG code in a separate directory so as not to
  3544. # inadvertently mix it up with Aladdin Enterprises' own code.
  3545. PDEP=$(AK)
  3546.  
  3547. png_1=png.$(OBJ) pngmem.$(OBJ) pngerror.$(OBJ)
  3548. png_2=pngtrans.$(OBJ) pngwrite.$(OBJ) pngwtran.$(OBJ) pngwutil.$(OBJ)
  3549.  
  3550. # libpng modules
  3551.  
  3552. png.$(OBJ): $(PSRC)png.c $(PDEP)
  3553.     $(CCCP) $(PSRC)png.c
  3554.  
  3555. # version 0.88 uses pngio.c
  3556. pngio.$(OBJ): $(PSRC)pngio.c $(PDEP)
  3557.     $(CCCP) $(PSRC)pngio.c
  3558.  
  3559. # version 0.89 uses pngwio.c
  3560. pngwio.$(OBJ): $(PSRC)pngwio.c $(PDEP)
  3561.     $(CCCP) $(PSRC)pngwio.c
  3562.  
  3563. pngmem.$(OBJ): $(PSRC)pngmem.c $(PDEP)
  3564.     $(CCCP) $(PSRC)pngmem.c
  3565.  
  3566. pngerror.$(OBJ): $(PSRC)pngerror.c $(PDEP)
  3567.     $(CCCP) $(PSRC)pngerror.c
  3568.  
  3569. pngtrans.$(OBJ): $(PSRC)pngtrans.c $(PDEP)
  3570.     $(CCCP) $(PSRC)pngtrans.c
  3571.  
  3572. pngwrite.$(OBJ): $(PSRC)pngwrite.c $(PDEP)
  3573.     $(CCCP) $(PSRC)pngwrite.c
  3574.  
  3575. pngwtran.$(OBJ): $(PSRC)pngwtran.c $(PDEP)
  3576.     $(CCCP) $(PSRC)pngwtran.c
  3577.  
  3578. pngwutil.$(OBJ): $(PSRC)pngwutil.c $(PDEP)
  3579.     $(CCCP) $(PSRC)pngwutil.c
  3580.  
  3581. # Define the version of libpng.dev that we are actually using.
  3582. libpng.dev: $(MAKEFILE) libpng_$(SHARE_LIBPNG).dev
  3583.     $(CP_) libpng_$(SHARE_LIBPNG).dev libpng.dev
  3584.  
  3585. # Define the shared version of libpng.
  3586. libpng_1.dev: $(MAKEFILE) $(LIBPNG_MAK) $(ECHOGS_XE)
  3587.     $(SETMOD) libpng_1 -lib $(LIBPNG_NAME)
  3588.  
  3589. # Define the non-shared version of libpng.
  3590. libpng_0.dev: $(LIBPNG_MAK) $(ECHOGS_XE) $(png_1) $(png_2)\
  3591.  zlibe.dev libpng$(PVERSION).dev
  3592.     $(SETMOD) libpng_0 $(png_1)
  3593.     $(ADDMOD) libpng_0 $(png_2)
  3594.     $(ADDMOD) libpng_0 -include zlibe libpng$(PVERSION)
  3595.  
  3596. libpng88.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngio.$(OBJ)
  3597.     $(SETMOD) libpng88 pngio.$(OBJ)
  3598.  
  3599. libpng89.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ)
  3600.     $(SETMOD) libpng89 pngwio.$(OBJ)
  3601.  
  3602. libpng90.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3603.     $(SETMOD) libpng90 pngwio.$(OBJ) -include crc32
  3604.  
  3605. libpng95.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3606.     $(SETMOD) libpng95 pngwio.$(OBJ) -include crc32
  3607.  
  3608. libpng96.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3609.     $(SETMOD) libpng96 pngwio.$(OBJ) -include crc32
  3610. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3611. # This file is part of Aladdin Ghostscript.
  3612. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3613. # or distributor accepts any responsibility for the consequences of using it,
  3614. # or for whether it serves any particular purpose or works at all, unless he
  3615. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3616. # License (the "License") for full details.
  3617. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3618. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3619. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3620. # under certain conditions described in the License.  Among other things, the
  3621. # License requires that the copyright notice and this notice be preserved on
  3622. # all copies.
  3623.  
  3624. # makefile for zlib library code.
  3625.  
  3626. # This partial makefile compiles the zlib library for use in Ghostscript.
  3627. # You can get the source code for this library from:
  3628. #   ftp://ftp.uu.net/pub/archiving/zip/zlib/zlib104.zip   (zlib 1.0.4)
  3629. #        or zlib-1.0.4.tar.gz
  3630. # Please see Ghostscript's `make.txt' file for instructions about how to
  3631. # unpack these archives.
  3632.  
  3633. # Define the name of this makefile.
  3634. ZLIB_MAK=zlib.mak
  3635.  
  3636. # ZSRCDIR is defined in the platform-specific makefile, not here,
  3637. # as the directory where the zlib sources are stored.
  3638. #ZSRCDIR=zlib
  3639. ZSRC=$(ZSRCDIR)$(D)
  3640. # We would like to define
  3641. #CCCZ=$(CCC) -I$(ZSRCDIR) -Dverbose=-1
  3642. # but the Watcom C compiler has strange undocumented restrictions on what can
  3643. # follow a -D=, and it doesn't allow negative numbers.  Instead, we define
  3644. # (in gs.mak):
  3645. #CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  3646. # and handle the definition of verbose in a different, more awkward way.
  3647.  
  3648. # We keep all of the zlib code in a separate directory so as not to
  3649. # inadvertently mix it up with Aladdin Enterprises' own code.
  3650. ZDEP=$(AK)
  3651.  
  3652. # Contrary to what some portability bigots assert as fact, C compilers are
  3653. # not consistent about where they start searching for #included files:
  3654. # some always start by looking in the same directory as the .c file being
  3655. # compiled, before using the search path specified with -I on the command
  3656. # line, while others do not do this.  For this reason, we must explicitly
  3657. # copy and then delete all the .c files, because they need to obtain our
  3658. # modified version of zutil.h.  We must also copy all header files that
  3659. # reference zutil.h directly or indirectly.
  3660.  
  3661. # Code common to compression and decompression.
  3662.  
  3663. zlibc_=zutil.$(OBJ)
  3664. zlibc.dev: $(ZLIB_MAK) $(ECHOGS_XE) $(zlibc_)
  3665.     $(SETMOD) zlibc $(zlibc_)
  3666.  
  3667. zutil.h: $(ZSRC)zutil.h $(ECHOGS_XE)
  3668.     $(EXP)echogs -w zutil.h -x 23 define verbose -s - -1
  3669.     $(EXP)echogs -a zutil.h -+R $(ZSRC)zutil.h
  3670.  
  3671. zutil.$(OBJ): $(ZSRC)zutil.c $(ZDEP) zutil.h
  3672.     $(CP_) $(ZSRC)zutil.c .
  3673.     $(CCCZ) zutil.c
  3674.     $(RM_) zutil.c
  3675.  
  3676. # Encoding (compression) code.
  3677.  
  3678. deflate.h: $(ZSRC)deflate.h zutil.h
  3679.     $(CP_) $(ZSRC)deflate.h deflate.h
  3680.  
  3681. zlibe.dev: $(MAKEFILE) zlibe_$(SHARE_ZLIB).dev
  3682.     $(CP_) zlibe_$(SHARE_ZLIB).dev zlibe.dev
  3683.  
  3684. zlibe_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3685.     $(SETMOD) zlibe_1 -lib $(ZLIB_NAME)
  3686.  
  3687. zlibe_=adler32.$(OBJ) deflate.$(OBJ) trees.$(OBJ)
  3688. zlibe_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibe_)
  3689.     $(SETMOD) zlibe_0 $(zlibe_)
  3690.     $(ADDMOD) zlibe_0 -include zlibc
  3691.  
  3692. adler32.$(OBJ): $(ZSRC)adler32.c $(ZDEP)
  3693.     $(CP_) $(ZSRC)adler32.c .
  3694.     $(CCCZ) adler32.c
  3695.     $(RM_) adler32.c
  3696.  
  3697. deflate.$(OBJ): $(ZSRC)deflate.c $(ZDEP) deflate.h
  3698.     $(CP_) $(ZSRC)deflate.c .
  3699.     $(CCCZ) deflate.c
  3700.     $(RM_) deflate.c
  3701.  
  3702. trees.$(OBJ): $(ZSRC)trees.c $(ZDEP) deflate.h
  3703.     $(CP_) $(ZSRC)trees.c .
  3704.     $(CCCZ) trees.c
  3705.     $(RM_) trees.c
  3706.  
  3707. # The zlib filters per se don't need crc32, but libpng versions starting
  3708. # with 0.90 do.
  3709.  
  3710. crc32.dev: $(MAKEFILE) crc32_$(SHARE_ZLIB).dev
  3711.     $(CP_) crc32_$(SHARE_ZLIB).dev crc32.dev
  3712.  
  3713. crc32_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3714.     $(SETMOD) crc32_1 -lib $(ZLIB_NAME)
  3715.  
  3716. crc32_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) crc32.$(OBJ)
  3717.     $(SETMOD) crc32_0 crc32.$(OBJ)
  3718.  
  3719. crc32.$(OBJ): $(ZSRC)crc32.c $(ZDEP) deflate.h
  3720.     $(CP_) $(ZSRC)crc32.c .
  3721.     $(CCCZ) crc32.c
  3722.     $(RM_) crc32.c
  3723.  
  3724. # Decoding (decompression) code.
  3725.  
  3726. zlibd.dev: $(MAKEFILE) zlibd_$(SHARE_ZLIB).dev
  3727.     $(CP_) zlibd_$(SHARE_ZLIB).dev zlibd.dev
  3728.  
  3729. zlibd_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3730.     $(SETMOD) zlibd_1 -lib $(ZLIB_NAME)
  3731.  
  3732. zlibd1_=infblock.$(OBJ) infcodes.$(OBJ) inffast.$(OBJ)
  3733. zlibd2_=inflate.$(OBJ) inftrees.$(OBJ) infutil.$(OBJ)
  3734. zlibd_ = $(zlibd1_) $(zlibd2_)
  3735. zlibd_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibd_)
  3736.     $(SETMOD) zlibd_0 $(zlibd1_)
  3737.     $(ADDMOD) zlibd_0 -obj $(zlibd2_)
  3738.     $(ADDMOD) zlibd_0 -include zlibc
  3739.  
  3740. infblock.$(OBJ): $(ZSRC)infblock.c $(ZDEP) zutil.h
  3741.     $(CP_) $(ZSRC)infblock.c .
  3742.     $(CCCZ) infblock.c
  3743.     $(RM_) infblock.c
  3744.  
  3745. infcodes.$(OBJ): $(ZSRC)infcodes.c $(ZDEP) zutil.h
  3746.     $(CP_) $(ZSRC)infcodes.c .
  3747.     $(CCCZ) infcodes.c
  3748.     $(RM_) infcodes.c
  3749.  
  3750. inffast.$(OBJ): $(ZSRC)inffast.c $(ZDEP) zutil.h
  3751.     $(CP_) $(ZSRC)inffast.c .
  3752.     $(CCCZ) inffast.c
  3753.     $(RM_) inffast.c
  3754.  
  3755. inflate.$(OBJ): $(ZSRC)inflate.c $(ZDEP) zutil.h
  3756.     $(CP_) $(ZSRC)inflate.c .
  3757.     $(CCCZ) inflate.c
  3758.     $(RM_) inflate.c
  3759.  
  3760. inftrees.$(OBJ): $(ZSRC)inftrees.c $(ZDEP) zutil.h
  3761.     $(CP_) $(ZSRC)inftrees.c .
  3762.     $(CCCZ) inftrees.c
  3763.     $(RM_) inftrees.c
  3764.  
  3765. infutil.$(OBJ): $(ZSRC)infutil.c $(ZDEP) zutil.h
  3766.     $(CP_) $(ZSRC)infutil.c .
  3767.     $(CCCZ) infutil.c
  3768.     $(RM_) infutil.c
  3769. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3770. # This file is part of Aladdin Ghostscript.
  3771. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3772. # or distributor accepts any responsibility for the consequences of using it,
  3773. # or for whether it serves any particular purpose or works at all, unless he
  3774. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3775. # License (the "License") for full details.
  3776. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3777. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3778. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3779. # under certain conditions described in the License.  Among other things, the
  3780. # License requires that the copyright notice and this notice be preserved on
  3781. # all copies.
  3782.  
  3783. # makefile for device drivers.
  3784.  
  3785. # Define the name of this makefile.
  3786. DEVS_MAK=devs.mak
  3787.  
  3788. ###### --------------------------- Catalog -------------------------- ######
  3789.  
  3790. # It is possible to build configurations with an arbitrary collection of
  3791. # device drivers, although some drivers are supported only on a subset
  3792. # of the target platforms.  The currently available drivers are:
  3793.  
  3794. # MS-DOS displays (note: not usable with Desqview/X):
  3795. #   MS-DOS EGA and VGA:
  3796. #    ega    EGA (640x350, 16-color)
  3797. #    vga    VGA (640x480, 16-color)
  3798. #   MS-DOS SuperVGA:
  3799. # *    ali    SuperVGA using Avance Logic Inc. chipset, 256-color modes
  3800. # *    atiw    ATI Wonder SuperVGA, 256-color modes
  3801. # *    s3vga    SuperVGA using S3 86C911 chip (e.g., Diamond Stealth board)
  3802. #    svga16    Generic SuperVGA in 800x600, 16-color mode
  3803. # *    tseng    SuperVGA using Tseng Labs ET3000/4000 chips, 256-color modes
  3804. # *    tvga    SuperVGA using Trident chipset, 256-color modes
  3805. #   ****** NOTE: The vesa device does not work with the Watcom (32-bit MS-DOS)
  3806. #   ****** compiler or executable.
  3807. #    vesa    SuperVGA with VESA standard API driver
  3808. #   MS-DOS other:
  3809. #    bgi    Borland Graphics Interface (CGA)  [MS-DOS only]
  3810. # *    herc    Hercules Graphics display   [MS-DOS only]
  3811. # *    pe    Private Eye display
  3812. # Other displays:
  3813. #   MS Windows:
  3814. #    mswindll  Microsoft Windows 3.1 DLL  [MS Windows only]
  3815. #    mswinprn  Microsoft Windows 3.0, 3.1 DDB printer  [MS Windows only]
  3816. #    mswinpr2  Microsoft Windows 3.0, 3.1 DIB printer  [MS Windows only]
  3817. #   OS/2:
  3818. # *    os2pm    OS/2 Presentation Manager   [OS/2 only]
  3819. # *    os2dll    OS/2 DLL bitmap             [OS/2 only]
  3820. # *    os2prn    OS/2 printer                [OS/2 only]
  3821. #   Unix and VMS:
  3822. #   ****** NOTE: For direct frame buffer addressing under SCO Unix or Xenix,
  3823. #   ****** edit the definition of EGAVGA below.
  3824. # *    att3b1    AT&T 3b1/Unixpc monochrome display   [3b1 only]
  3825. # *    lvga256  Linux vgalib, 256-color VGA modes  [Linux only]
  3826. # *    sonyfb    Sony Microsystems monochrome display   [Sony only]
  3827. # *    sunview  SunView window system   [SunOS only]
  3828. # +    vgalib    Linux PC with VGALIB   [Linux only]
  3829. #    x11    X Windows version 11, release >=4   [Unix and VMS only]
  3830. #    x11alpha  X Windows masquerading as a device with alpha capability
  3831. #    x11cmyk  X Windows masquerading as a 1-bit-per-plane CMYK device
  3832. #    x11gray2  X Windows as a 2-bit gray-scale device
  3833. #    x11mono  X Windows masquerading as a black-and-white device
  3834. #   Platform-independent:
  3835. # *    sxlcrt    CRT sixels, e.g. for VT240-like terminals
  3836. # Printers:
  3837. # *    ap3250    Epson AP3250 printer
  3838. # *    appledmp  Apple Dot Matrix Printer (should also work with Imagewriter)
  3839. #    bj10e    Canon BubbleJet BJ10e
  3840. # *    bj200    Canon BubbleJet BJ200
  3841. # *    bjc600   Canon Color BubbleJet BJC-600, BJC-4000 and BJC-70
  3842. #               also good for Apple printers like the StyleWriter 2x00
  3843. # *    bjc800   Canon Color BubbleJet BJC-800
  3844. # *     ccr     CalComp Raster format
  3845. # *    cdeskjet  H-P DeskJet 500C with 1 bit/pixel color
  3846. # *    cdjcolor  H-P DeskJet 500C with 24 bit/pixel color and
  3847. #        high-quality color (Floyd-Steinberg) dithering;
  3848. #        also good for DeskJet 540C and Citizen Projet IIc (-r200x300)
  3849. # *    cdjmono  H-P DeskJet 500C printing black only;
  3850. #        also good for DeskJet 510, 520, and 540C (black only)
  3851. # *    cdj500    H-P DeskJet 500C (same as cdjcolor)
  3852. # *    cdj550    H-P DeskJet 550C/560C
  3853. # *    cp50    Mitsubishi CP50 color printer
  3854. # *    declj250  alternate DEC LJ250 driver
  3855. # +    deskjet  H-P DeskJet and DeskJet Plus
  3856. #    djet500  H-P DeskJet 500
  3857. # *    djet500c  H-P DeskJet 500C alternate driver
  3858. #        (does not work on 550C or 560C)
  3859. # *    dnj650c  H-P DesignJet 650C
  3860. #    epson    Epson-compatible dot matrix printers (9- or 24-pin)
  3861. # *    eps9mid  Epson-compatible 9-pin, interleaved lines
  3862. #        (intermediate resolution)
  3863. # *    eps9high  Epson-compatible 9-pin, interleaved lines
  3864. #        (triple resolution)
  3865. # *    epsonc    Epson LQ-2550 and Fujitsu 3400/2400/1200 color printers
  3866. # *    ibmpro  IBM 9-pin Proprinter
  3867. # *    imagen    Imagen ImPress printers
  3868. # *    iwhi    Apple Imagewriter in high-resolution mode
  3869. # *    iwlo    Apple Imagewriter in low-resolution mode
  3870. # *    iwlq    Apple Imagewriter LQ in 320 x 216 dpi mode
  3871. # *    jetp3852  IBM Jetprinter ink-jet color printer (Model #3852)
  3872. # +    laserjet  H-P LaserJet
  3873. # *    la50    DEC LA50 printer
  3874. # *    la70    DEC LA70 printer
  3875. # *    la70t    DEC LA70 printer with low-resolution text enhancement
  3876. # *    la75    DEC LA75 printer
  3877. # *    la75plus DEC LA75plus printer
  3878. # *    lbp8    Canon LBP-8II laser printer
  3879. # *    lips3    Canon LIPS III laser printer in English (CaPSL) mode
  3880. # *    ln03    DEC LN03 printer
  3881. # *    lj250    DEC LJ250 Companion color printer
  3882. # +    ljet2p    H-P LaserJet IId/IIp/III* with TIFF compression
  3883. # +    ljet3    H-P LaserJet III* with Delta Row compression
  3884. # +    ljet3d    H-P LaserJet IIID with duplex capability
  3885. # +    ljet4    H-P LaserJet 4 (defaults to 600 dpi)
  3886. # +    lj4dith  H-P LaserJet 4 with Floyd-Steinberg dithering
  3887. # +    ljetplus  H-P LaserJet Plus
  3888. #    lj5mono  H-P LaserJet 5 & 6 family (PCL XL), bitmap:
  3889. #        see below for restrictions & advice
  3890. #    lj5gray  H-P LaserJet 5 & 6 family, gray-scale bitmap;
  3891. #        see below for restrictions & advice
  3892. # *    lp2563    H-P 2563B line printer
  3893. # *    lp8000    Epson LP-8000 laser printer
  3894. # *    m8510    C.Itoh M8510 printer
  3895. # *    necp6    NEC P6/P6+/P60 printers at 360 x 360 DPI resolution
  3896. # *    nwp533  Sony Microsystems NWP533 laser printer   [Sony only]
  3897. # *    oce9050  OCE 9050 printer
  3898. # *    oki182    Okidata MicroLine 182
  3899. # *    okiibm    Okidata MicroLine IBM-compatible printers
  3900. # *    paintjet  alternate H-P PaintJet color printer
  3901. # *    pj    H-P PaintJet XL driver 
  3902. # *    pjetxl    alternate H-P PaintJet XL driver
  3903. # *    pjxl    H-P PaintJet XL color printer
  3904. # *    pjxl300  H-P PaintJet XL300 color printer;
  3905. #        also good for PaintJet 1200C
  3906. #    (pxlmono) H-P black-and-white PCL XL printers (LaserJet 5 and 6 family)
  3907. #    (pxlcolor) H-P color PCL XL printers (none available yet)
  3908. # *    r4081    Ricoh 4081 laser printer
  3909. # *    sj48    StarJet 48 inkjet printer
  3910. # *    sparc    SPARCprinter
  3911. # *    st800    Epson Stylus 800 printer
  3912. # *    stcolor    Epson Stylus Color
  3913. # *    t4693d2  Tektronix 4693d color printer, 2 bits per R/G/B component
  3914. # *    t4693d4  Tektronix 4693d color printer, 4 bits per R/G/B component
  3915. # *    t4693d8  Tektronix 4693d color printer, 8 bits per R/G/B component
  3916. # *    tek4696  Tektronix 4695/4696 inkjet plotter
  3917. # *    uniprint  Unified printer driver -- Configurable Color ESC/P-,
  3918. #        ESC/P2-, HP-RTL/PCL mono/color driver
  3919. # *    xes    Xerox XES printers (2700, 3700, 4045, etc.)
  3920. # Fax systems:
  3921. # *    dfaxhigh  DigiBoard, Inc.'s DigiFAX software format (high resolution)
  3922. # *    dfaxlow  DigiFAX low (normal) resolution
  3923. # Fax file format:
  3924. #   ****** NOTE: all of these drivers adjust the page size to match
  3925. #   ****** one of the three CCITT standard sizes (U.S. letter with A4 width,
  3926. #   ****** A4, or B4).
  3927. #    faxg3    Group 3 fax, with EOLs but no header or EOD
  3928. #    faxg32d  Group 3 2-D fax, with EOLs but no header or EOD
  3929. #    faxg4    Group 4 fax, with EOLs but no header or EOD
  3930. #    tiffcrle  TIFF "CCITT RLE 1-dim" (= Group 3 fax with no EOLs)
  3931. #    tiffg3    TIFF Group 3 fax (with EOLs)
  3932. #    tiffg32d  TIFF Group 3 2-D fax
  3933. #    tiffg4    TIFF Group 4 fax
  3934. # High-level file formats:
  3935. #    epswrite  EPS output (like PostScript Distillery)
  3936. #    pdfwrite  PDF output (like Adobe Acrobat Distiller)
  3937. #    pswrite  PostScript output (like PostScript Distillery)
  3938. #    pxlmono  Black-and-white PCL XL
  3939. #    pxlcolor  Color PCL XL
  3940. # Other raster file formats and devices:
  3941. #    bit    Plain bits, monochrome
  3942. #    bitrgb    Plain bits, RGB
  3943. #    bitcmyk  Plain bits, CMYK
  3944. #    bmpmono    Monochrome MS Windows .BMP file format
  3945. #    bmp16    4-bit (EGA/VGA) .BMP file format
  3946. #    bmp256    8-bit (256-color) .BMP file format
  3947. #    bmp16m    24-bit .BMP file format
  3948. #    cgmmono  Monochrome (black-and-white) CGM -- LOW LEVEL OUTPUT ONLY
  3949. #    cgm8    8-bit (256-color) CGM -- DITTO
  3950. #    cgm24    24-bit color CGM -- DITTO
  3951. # *    cif    CIF file format for VLSI
  3952. #    jpeg    JPEG format, RGB output
  3953. #    jpeggray  JPEG format, gray output
  3954. #    miff24    ImageMagick MIFF format, 24-bit direct color, RLE compressed
  3955. # *    mgrmono  1-bit monochrome MGR devices
  3956. # *    mgrgray2  2-bit gray scale MGR devices
  3957. # *    mgrgray4  4-bit gray scale MGR devices
  3958. # *    mgrgray8  8-bit gray scale MGR devices
  3959. # *    mgr4    4-bit (VGA) color MGR devices
  3960. # *    mgr8    8-bit color MGR devices
  3961. #    pcxmono    PCX file format, monochrome (1-bit black and white)
  3962. #    pcxgray    PCX file format, 8-bit gray scale
  3963. #    pcx16    PCX file format, 4-bit planar (EGA/VGA) color
  3964. #    pcx256    PCX file format, 8-bit chunky color
  3965. #    pcx24b    PCX file format, 24-bit color (3 8-bit planes)
  3966. #    pcxcmyk PCX file format, 4-bit chunky CMYK color
  3967. #    pbm    Portable Bitmap (plain format)
  3968. #    pbmraw    Portable Bitmap (raw format)
  3969. #    pgm    Portable Graymap (plain format)
  3970. #    pgmraw    Portable Graymap (raw format)
  3971. #    pgnm    Portable Graymap (plain format), optimizing to PBM if possible
  3972. #    pgnmraw    Portable Graymap (raw format), optimizing to PBM if possible
  3973. #    pnm    Portable Pixmap (plain format) (RGB), optimizing to PGM or PBM
  3974. #         if possible
  3975. #    pnmraw    Portable Pixmap (raw format) (RGB), optimizing to PGM or PBM
  3976. #         if possible
  3977. #    ppm    Portable Pixmap (plain format) (RGB)
  3978. #    ppmraw    Portable Pixmap (raw format) (RGB)
  3979. #    pkm    Portable inKmap (plain format) (4-bit CMYK => RGB)
  3980. #    pkmraw    Portable inKmap (raw format) (4-bit CMYK => RGB)
  3981. #    pngmono    Monochrome Portable Network Graphics (PNG)
  3982. #    pnggray    8-bit gray Portable Network Graphics (PNG)
  3983. #    png16    4-bit color Portable Network Graphics (PNG)
  3984. #    png256    8-bit color Portable Network Graphics (PNG)
  3985. #    png16m    24-bit color Portable Network Graphics (PNG)
  3986. #    psmono    PostScript (Level 1) monochrome image
  3987. #    psgray    PostScript (Level 1) 8-bit gray image
  3988. #    sgirgb    SGI RGB pixmap format
  3989. #    tiff12nc  TIFF 12-bit RGB, no compression
  3990. #    tiff24nc  TIFF 24-bit RGB, no compression (NeXT standard format)
  3991. #    tifflzw  TIFF LZW (tag = 5) (monochrome)
  3992. #    tiffpack  TIFF PackBits (tag = 32773) (monochrome)
  3993.  
  3994. # User-contributed drivers marked with * require hardware or software
  3995. # that is not available to Aladdin Enterprises.  Please contact the
  3996. # original contributors, not Aladdin Enterprises, if you have questions.
  3997. # Contact information appears in the driver entry below.
  3998. #
  3999. # Drivers marked with a + are maintained by Aladdin Enterprises with
  4000. # the assistance of users, since Aladdin Enterprises doesn't have access to
  4001. # the hardware for these either.
  4002.  
  4003. # If you add drivers, it would be nice if you kept each list
  4004. # in alphabetical order.
  4005.  
  4006. ###### ----------------------- End of catalog ----------------------- ######
  4007.  
  4008. # As noted in gs.mak, DEVICE_DEVS and DEVICE_DEVS1..15 select the devices
  4009. # that should be included in a given configuration.  By convention, these
  4010. # are used as follows.  Each of these must be limited to about 10 devices
  4011. # so as not to overflow the 120 character limit on MS-DOS command lines.
  4012. #    DEVICE_DEVS - the default device, and any display devices.
  4013. #    DEVICE_DEVS1 - additional display devices if needed.
  4014. #    DEVICE_DEVS2 - dot matrix printers.
  4015. #    DEVICE_DEVS3 - H-P monochrome printers.
  4016. #    DEVICE_DEVS4 - H-P color printers.
  4017. #    DEVICE_DEVS5 - additional H-P printers if needed.
  4018. #    DEVICE_DEVS6 - other ink-jet and laser printers.
  4019. #    DEVICE_DEVS7 - fax file formats.
  4020. #    DEVICE_DEVS8 - PCX file formats.
  4021. #    DEVICE_DEVS9 - PBM/PGM/PPM file formats.
  4022. #    DEVICE_DEVS10 - black-and-white TIFF file formats.
  4023. #    DEVICE_DEVS11 - BMP and color TIFF file formats.
  4024. #    DEVICE_DEVS12 - PostScript image and 'bit' file formats.
  4025. #    DEVICE_DEVS13 - PNG file formats.
  4026. #    DEVICE_DEVS14 - CGM, JPEG, and MIFF file formats.
  4027. #    DEVICE_DEVS15 - high-level (PostScript and PDF) file formats.
  4028. # Feel free to disregard this convention if it gets in your way.
  4029.  
  4030. # If you want to add a new device driver, the examples below should be
  4031. # enough of a guide to the correct form for the makefile rules.
  4032. # Note that all drivers other than displays must include page.dev in their
  4033. # dependencies and use $(SETPDEV) rather than $(SETDEV) in their rule bodies.
  4034.  
  4035. # All device drivers depend on the following:
  4036. GDEV=$(AK) $(ECHOGS_XE) $(gserrors_h) $(gx_h) $(gxdevice_h)
  4037.  
  4038. # "Printer" drivers depend on the following:
  4039. PDEVH=$(AK) $(gdevprn_h)
  4040.  
  4041. # Define the header files for device drivers.  Every header file used by
  4042. # more than one device driver family must be listed here.
  4043. gdev8bcm_h=gdev8bcm.h
  4044. gdevpccm_h=gdevpccm.h
  4045. gdevpcfb_h=gdevpcfb.h $(dos__h)
  4046. gdevpcl_h=gdevpcl.h
  4047. gdevsvga_h=gdevsvga.h
  4048. gdevx_h=gdevx.h
  4049.  
  4050. ###### ----------------------- Device support ----------------------- ######
  4051.  
  4052. # Provide a mapping between StandardEncoding and ISOLatin1Encoding.
  4053. gdevemap.$(OBJ): gdevemap.c $(AK) $(std_h)
  4054.  
  4055. # Implement dynamic color management for 8-bit mapped color displays.
  4056. gdev8bcm.$(OBJ): gdev8bcm.c $(AK) \
  4057.   $(gx_h) $(gxdevice_h) $(gdev8bcm_h)
  4058.  
  4059. ###### ------------------- MS-DOS display devices ------------------- ######
  4060.  
  4061. # There are really only three drivers: an EGA/VGA driver (4 bit-planes,
  4062. # plane-addressed), a SuperVGA driver (8 bit-planes, byte addressed),
  4063. # and a special driver for the S3 chip.
  4064.  
  4065. # PC display color mapping
  4066. gdevpccm.$(OBJ): gdevpccm.c $(AK) \
  4067.   $(gx_h) $(gsmatrix_h) $(gxdevice_h) $(gdevpccm_h)
  4068.  
  4069. ### ----------------------- EGA and VGA displays ----------------------- ###
  4070.  
  4071. # The shared MS-DOS makefile defines PCFBASM as either gdevegaa.$(OBJ)
  4072. # or an empty string.
  4073.  
  4074. gdevegaa.$(OBJ): gdevegaa.asm
  4075.  
  4076. # NOTE: for direct frame buffer addressing under SCO Unix or Xenix,
  4077. # change gdevevga to gdevsco in the following line.  Also, since
  4078. # SCO's /bin/as does not support the "out" instructions, you must build
  4079. # the gnu assembler and have it on your path as "as".
  4080. EGAVGA=gdevevga.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4081. #EGAVGA=gdevsco.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4082.  
  4083. gdevevga.$(OBJ): gdevevga.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4084.     $(CCD) gdevevga.c
  4085.  
  4086. gdevsco.$(OBJ): gdevsco.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4087.  
  4088. # Common code for MS-DOS and SCO.
  4089. gdevpcfb.$(OBJ): gdevpcfb.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4090.  $(gdevpccm_h) $(gdevpcfb_h) $(gsparam_h)
  4091.     $(CCD) gdevpcfb.c
  4092.  
  4093. # The EGA/VGA family includes EGA and VGA.  Many SuperVGAs in 800x600,
  4094. # 16-color mode can share the same code; see the next section below.
  4095.  
  4096. ega.dev: $(EGAVGA)
  4097.     $(SETDEV) ega $(EGAVGA)
  4098.  
  4099. vga.dev: $(EGAVGA)
  4100.     $(SETDEV) vga $(EGAVGA)
  4101.  
  4102. ### ------------------------- SuperVGA displays ------------------------ ###
  4103.  
  4104. # SuperVGA displays in 16-color, 800x600 mode are really just slightly
  4105. # glorified VGA's, so we can handle them all with a single driver.
  4106. # The way to select them on the command line is with
  4107. #    -sDEVICE=svga16 -dDisplayMode=NNN
  4108. # where NNN is the display mode in decimal.  See use.txt for the modes
  4109. # for some popular display chipsets.
  4110.  
  4111. svga16.dev: $(EGAVGA)
  4112.     $(SETDEV) svga16 $(EGAVGA)
  4113.  
  4114. # More capable SuperVGAs have a wide variety of slightly differing
  4115. # interfaces, so we need a separate driver for each one.
  4116.  
  4117. SVGA=gdevsvga.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4118.  
  4119. gdevsvga.$(OBJ): gdevsvga.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4120.  $(gsparam_h) $(gxarith_h) $(gdevpccm_h) $(gdevpcfb_h) $(gdevsvga_h)
  4121.     $(CCD) gdevsvga.c
  4122.  
  4123. # The SuperVGA family includes: Avance Logic Inc., ATI Wonder, S3,
  4124. # Trident, Tseng ET3000/4000, and VESA.
  4125.  
  4126. ali.dev: $(SVGA)
  4127.     $(SETDEV) ali $(SVGA)
  4128.  
  4129. atiw.dev: $(SVGA)
  4130.     $(SETDEV) atiw $(SVGA)
  4131.  
  4132. tseng.dev: $(SVGA)
  4133.     $(SETDEV) tseng $(SVGA)
  4134.  
  4135. tvga.dev: $(SVGA)
  4136.     $(SETDEV) tvga $(SVGA)
  4137.  
  4138. vesa.dev: $(SVGA)
  4139.     $(SETDEV) vesa $(SVGA)
  4140.  
  4141. # The S3 driver doesn't share much code with the others.
  4142.  
  4143. s3vga_=gdevs3ga.$(OBJ) gdevsvga.$(OBJ) gdevpccm.$(OBJ)
  4144. s3vga.dev: $(SVGA) $(s3vga_)
  4145.     $(SETDEV) s3vga $(SVGA)
  4146.     $(ADDMOD) s3vga -obj $(s3vga_)
  4147.  
  4148. gdevs3ga.$(OBJ): gdevs3ga.c $(GDEV) $(gdevpcfb_h) $(gdevsvga_h)
  4149.     $(CCD) gdevs3ga.c
  4150.  
  4151. ### ------------ The BGI (Borland Graphics Interface) device ----------- ###
  4152.  
  4153. cgaf.$(OBJ): $(BGIDIR)\cga.bgi
  4154.     $(BGIDIR)\bgiobj /F $(BGIDIR)\cga
  4155.  
  4156. egavgaf.$(OBJ): $(BGIDIR)\egavga.bgi
  4157.     $(BGIDIR)\bgiobj /F $(BGIDIR)\egavga
  4158.  
  4159. # Include egavgaf.$(OBJ) for debugging only.
  4160. bgi_=gdevbgi.$(OBJ) cgaf.$(OBJ)
  4161. bgi.dev: $(bgi_)
  4162.     $(SETDEV) bgi $(bgi_)
  4163.     $(ADDMOD) bgi -lib $(LIBDIR)\graphics
  4164.  
  4165. gdevbgi.$(OBJ): gdevbgi.c $(GDEV) $(MAKEFILE) $(gxxfont_h)
  4166.     $(CCC) -DBGI_LIB="$(BGIDIRSTR)" gdevbgi.c
  4167.  
  4168. ### ------------------- The Hercules Graphics display ------------------- ###
  4169.  
  4170. herc_=gdevherc.$(OBJ)
  4171. herc.dev: $(herc_)
  4172.     $(SETDEV) herc $(herc_)
  4173.  
  4174. gdevherc.$(OBJ): gdevherc.c $(GDEV) $(dos__h) $(gsmatrix_h) $(gxbitmap_h)
  4175.     $(CCC) gdevherc.c
  4176.  
  4177. ### ---------------------- The Private Eye display ---------------------- ###
  4178. ### Note: this driver was contributed by a user:                          ###
  4179. ###   please contact narf@media-lab.media.mit.edu if you have questions.  ###
  4180.  
  4181. pe_=gdevpe.$(OBJ)
  4182. pe.dev: $(pe_)
  4183.     $(SETDEV) pe $(pe_)
  4184.  
  4185. gdevpe.$(OBJ): gdevpe.c $(GDEV) $(memory__h)
  4186.  
  4187. ###### ----------------------- Other displays ------------------------ ######
  4188.  
  4189. ### -------------------- The MS-Windows 3.n DLL ------------------------- ###
  4190.  
  4191. gsdll_h=gsdll.h
  4192.  
  4193. gdevmswn_h=gdevmswn.h $(GDEV)\
  4194.  $(dos__h) $(memory__h) $(string__h) $(windows__h)\
  4195.  gp_mswin.h
  4196.  
  4197. gdevmswn.$(OBJ): gdevmswn.c $(gdevmswn_h) $(gp_h) $(gpcheck_h) \
  4198.  $(gsdll_h) $(gsparam_h) $(gdevpccm_h)
  4199.  
  4200. gdevmsxf.$(OBJ): gdevmsxf.c $(ctype__h) $(math__h) $(memory__h) $(string__h)\
  4201.  $(gdevmswn_h) $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4202.  
  4203. # An implementation using a DIB filled by an image device.
  4204. gdevwdib.$(OBJ): gdevwdib.c $(gdevmswn_h) $(gsdll_h) $(gxdevmem_h)
  4205.  
  4206. mswindll_=gdevmswn.$(OBJ) gdevmsxf.$(OBJ) gdevwdib.$(OBJ) \
  4207.   gdevemap.$(OBJ) gdevpccm.$(OBJ)
  4208. mswindll.dev: $(mswindll_)
  4209.     $(SETDEV) mswindll $(mswindll_)
  4210.  
  4211. ### -------------------- The MS-Windows DDB 3.n printer ----------------- ###
  4212.  
  4213. mswinprn_=gdevwprn.$(OBJ) gdevmsxf.$(OBJ)
  4214. mswinprn.dev: $(mswinprn_)
  4215.     $(SETDEV) mswinprn $(mswinprn_)
  4216.  
  4217. gdevwprn.$(OBJ): gdevwprn.c $(gdevmswn_h) $(gp_h)
  4218.  
  4219. ### -------------------- The MS-Windows DIB 3.n printer ----------------- ###
  4220.  
  4221. mswinpr2_=gdevwpr2.$(OBJ)
  4222. mswinpr2.dev: $(mswinpr2_) page.dev
  4223.     $(SETPDEV) mswinpr2 $(mswinpr2_)
  4224.  
  4225. gdevwpr2.$(OBJ): gdevwpr2.c $(PDEVH) $(windows__h)\
  4226.  $(gdevpccm_h) $(gp_h) gp_mswin.h
  4227.  
  4228. ### ------------------ OS/2 Presentation Manager device ----------------- ###
  4229.  
  4230. os2pm_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4231. os2pm.dev: $(os2pm_)
  4232.     $(SETDEV) os2pm $(os2pm_)
  4233.  
  4234. os2dll_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4235. os2dll.dev: $(os2dll_)
  4236.     $(SETDEV) os2dll $(os2dll_)
  4237.  
  4238. gdevpm.$(OBJ): gdevpm.c $(string__h)\
  4239.  $(gp_h) $(gpcheck_h)\
  4240.  $(gsdll_h) $(gserrors_h) $(gsexit_h) $(gsparam_h)\
  4241.  $(gx_h) $(gxdevice_h) $(gxdevmem_h)\
  4242.  $(gdevpccm_h) gdevpm.h
  4243.  
  4244. ### --------------------------- The OS/2 printer ------------------------ ###
  4245.  
  4246. os2prn_=gdevos2p.$(OBJ)
  4247. os2prn.dev: $(os2prn_) page.dev
  4248.     $(SETPDEV) os2prn $(os2prn_)
  4249.  
  4250. os2prn.$(OBJ): os2prn.c $(gp_h)
  4251.  
  4252. ### -------------- The AT&T 3b1 Unixpc monochrome display --------------- ###
  4253. ### Note: this driver was contributed by a user: please contact           ###
  4254. ###       Andy Fyfe (andy@cs.caltech.edu) if you have questions.          ###
  4255.  
  4256. att3b1_=gdev3b1.$(OBJ)
  4257. att3b1.dev: $(att3b1_)
  4258.     $(SETDEV) att3b1 $(att3b1_)
  4259.  
  4260. gdev3b1.$(OBJ): gdev3b1.c $(GDEV)
  4261.  
  4262. ### ---------------------- Linux PC with vgalib ------------------------- ###
  4263. ### Note: these drivers were contributed by users.                        ###
  4264. ### For questions about the lvga256 driver, please contact                ###
  4265. ###       Ludger Kunz (ludger.kunz@fernuni-hagen.de).                     ###
  4266. ### For questions about the vgalib driver, please contact                 ###
  4267. ###       Erik Talvola (talvola@gnu.ai.mit.edu).                          ###
  4268.  
  4269. lvga256_=gdevl256.$(OBJ)
  4270. lvga256.dev: $(lvga256_)
  4271.     $(SETDEV) lvga256 $(lvga256_)
  4272.     $(ADDMOD) lvga256 -lib vga vgagl
  4273.  
  4274. gdevl256.$(OBJ): gdevl256.c $(GDEV)
  4275.  
  4276. vgalib_=gdevvglb.$(OBJ) gdevpccm.$(OBJ)
  4277. vgalib.dev: $(vgalib_)
  4278.     $(SETDEV) vgalib $(vgalib_)
  4279.     $(ADDMOD) vgalib -lib vga
  4280.  
  4281. gdevvglb.$(OBJ): gdevvglb.c $(GDEV) $(gdevpccm_h) $(gsparam_h)
  4282.  
  4283. ### ------------------- Sony NeWS frame buffer device ------------------ ###
  4284. ### Note: this driver was contributed by a user: please contact          ###
  4285. ###       Mike Smolenski (mike@intertech.com) if you have questions.     ###
  4286.  
  4287. # This is implemented as a 'printer' device.
  4288. sonyfb_=gdevsnfb.$(OBJ)
  4289. sonyfb.dev: $(sonyfb_) page.dev
  4290.     $(SETPDEV) sonyfb $(sonyfb_)
  4291.  
  4292. gdevsnfb.$(OBJ): gdevsnfb.c $(PDEVH)
  4293.  
  4294. ### ------------------------ The SunView device ------------------------ ###
  4295. ### Note: this driver is maintained by a user: if you have questions,    ###
  4296. ###       please contact Andreas Stolcke (stolcke@icsi.berkeley.edu).    ###
  4297.  
  4298. sunview_=gdevsun.$(OBJ)
  4299. sunview.dev: $(sunview_)
  4300.     $(SETDEV) sunview $(sunview_)
  4301.     $(ADDMOD) sunview -lib suntool sunwindow pixrect
  4302.  
  4303. gdevsun.$(OBJ): gdevsun.c $(GDEV) $(malloc__h)\
  4304.  $(gscdefs_h) $(gserrors_h) $(gsmatrix_h)
  4305.  
  4306. ### -------------------------- The X11 device -------------------------- ###
  4307.  
  4308. # Aladdin Enterprises does not support Ghostview.  For more information
  4309. # about Ghostview, please contact Tim Theisen (ghostview@cs.wisc.edu).
  4310.  
  4311. # See the main makefile for the definition of XLIBS.
  4312. x11_=gdevx.$(OBJ) gdevxini.$(OBJ) gdevxxf.$(OBJ) gdevemap.$(OBJ)
  4313. x11.dev: $(x11_)
  4314.     $(SETDEV) x11 $(x11_)
  4315.     $(ADDMOD) x11 -lib $(XLIBS)
  4316.  
  4317. # See the main makefile for the definition of XINCLUDE.
  4318. GDEVX=$(GDEV) x_.h gdevx.h $(MAKEFILE)
  4319. gdevx.$(OBJ): gdevx.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4320.     $(CCC) $(XINCLUDE) gdevx.c
  4321.  
  4322. gdevxini.$(OBJ): gdevxini.c $(GDEVX) $(math__h) $(memory__h) $(gserrors_h)
  4323.     $(CCC) $(XINCLUDE) gdevxini.c
  4324.  
  4325. gdevxxf.$(OBJ): gdevxxf.c $(GDEVX) $(math__h) $(memory__h)\
  4326.  $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4327.     $(CCC) $(XINCLUDE) gdevxxf.c
  4328.  
  4329. # Alternate X11-based devices to help debug other drivers.
  4330. # x11alpha pretends to have 4 bits of alpha channel.
  4331. # x11cmyk pretends to be a CMYK device with 1 bit each of C,M,Y,K.
  4332. # x11gray2 pretends to be a 2-bit gray-scale device.
  4333. # x11mono pretends to be a black-and-white device.
  4334. x11alt_=$(x11_) gdevxalt.$(OBJ)
  4335. x11alpha.dev: $(x11alt_)
  4336.     $(SETDEV) x11alpha $(x11alt_)
  4337.     $(ADDMOD) x11alpha -lib $(XLIBS)
  4338.  
  4339. x11cmyk.dev: $(x11alt_)
  4340.     $(SETDEV) x11cmyk $(x11alt_)
  4341.     $(ADDMOD) x11cmyk -lib $(XLIBS)
  4342.  
  4343. x11gray2.dev: $(x11alt_)
  4344.     $(SETDEV) x11gray2 $(x11alt_)
  4345.     $(ADDMOD) x11gray2 -lib $(XLIBS)
  4346.  
  4347. x11mono.dev: $(x11alt_)
  4348.     $(SETDEV) x11mono $(x11alt_)
  4349.     $(ADDMOD) x11mono -lib $(XLIBS)
  4350.  
  4351. gdevxalt.$(OBJ): gdevxalt.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4352.     $(CCC) $(XINCLUDE) gdevxalt.c
  4353.  
  4354. ### ------------------------- DEC sixel displays ------------------------ ###
  4355. ### Note: this driver was contributed by a user: please contact           ###
  4356. ###   Phil Keegstra (keegstra@tonga.gsfc.nasa.gov) if you have questions. ###
  4357.  
  4358. # This is a "printer" device, but it probably shouldn't be.
  4359. # I don't know why the implementor chose to do it this way.
  4360. sxlcrt_=gdevln03.$(OBJ)
  4361. sxlcrt.dev: $(sxlcrt_) page.dev
  4362.     $(SETPDEV) sxlcrt $(sxlcrt_)
  4363.  
  4364. ###### --------------- Memory-buffered printer devices --------------- ######
  4365.  
  4366. ### --------------------- The Apple printer devices --------------------- ###
  4367. ### Note: these drivers were contributed by users.                        ###
  4368. ###   If you have questions about the DMP driver, please contact          ###
  4369. ###    Mark Wedel (master@cats.ucsc.edu).                                ###
  4370. ###   If you have questions about the Imagewriter drivers, please contact ###
  4371. ###    Jonathan Luckey (luckey@rtfm.mlb.fl.us).                          ###
  4372. ###   If you have questions about the Imagewriter LQ driver, please       ###
  4373. ###    contact Scott Barker (barkers@cuug.ab.ca).                        ###
  4374.  
  4375. appledmp_=gdevadmp.$(OBJ)
  4376.  
  4377. gdevadmp.$(OBJ): gdevadmp.c $(PDEVH)
  4378.  
  4379. appledmp.dev: $(appledmp_) page.dev
  4380.     $(SETPDEV) appledmp $(appledmp_)
  4381.  
  4382. iwhi.dev: $(appledmp_) page.dev
  4383.     $(SETPDEV) iwhi $(appledmp_)
  4384.  
  4385. iwlo.dev: $(appledmp_) page.dev
  4386.     $(SETPDEV) iwlo $(appledmp_)
  4387.  
  4388. iwlq.dev: $(appledmp_) page.dev
  4389.     $(SETPDEV) iwlq $(appledmp_)
  4390.  
  4391. ### ------------ The Canon BubbleJet BJ10e and BJ200 devices ------------ ###
  4392.  
  4393. bj10e_=gdevbj10.$(OBJ)
  4394.  
  4395. bj10e.dev: $(bj10e_) page.dev
  4396.     $(SETPDEV) bj10e $(bj10e_)
  4397.  
  4398. bj200.dev: $(bj10e_) page.dev
  4399.     $(SETPDEV) bj200 $(bj10e_)
  4400.  
  4401. gdevbj10.$(OBJ): gdevbj10.c $(PDEVH)
  4402.  
  4403. ### ------------- The CalComp Raster Format ----------------------------- ###
  4404. ### Note: this driver was contributed by a user: please contact           ###
  4405. ###       Ernst Muellner (ernst.muellner@oenzl.siemens.de) if you have    ###
  4406. ###       questions.                                                      ###
  4407.  
  4408. ccr_=gdevccr.$(OBJ)
  4409. ccr.dev: $(ccr_) page.dev
  4410.     $(SETPDEV) ccr $(ccr_)
  4411.  
  4412. gdevccr.$(OBJ): gdevccr.c $(PDEVH)
  4413.  
  4414. ### ----------- The H-P DeskJet and LaserJet printer devices ----------- ###
  4415.  
  4416. ### These are essentially the same device.
  4417. ### NOTE: printing at full resolution (300 DPI) requires a printer
  4418. ###   with at least 1.5 Mb of memory.  150 DPI only requires .5 Mb.
  4419. ### Note that the lj4dith driver is included with the H-P color printer
  4420. ###   drivers below.
  4421.  
  4422. HPPCL=gdevpcl.$(OBJ)
  4423. HPMONO=gdevdjet.$(OBJ) $(HPPCL)
  4424.  
  4425. gdevpcl.$(OBJ): gdevpcl.c $(PDEVH) $(gdevpcl_h)
  4426.  
  4427. gdevdjet.$(OBJ): gdevdjet.c $(PDEVH) $(gdevpcl_h)
  4428.  
  4429. deskjet.dev: $(HPMONO) page.dev
  4430.     $(SETPDEV) deskjet $(HPMONO)
  4431.  
  4432. djet500.dev: $(HPMONO) page.dev
  4433.     $(SETPDEV) djet500 $(HPMONO)
  4434.  
  4435. laserjet.dev: $(HPMONO) page.dev
  4436.     $(SETPDEV) laserjet $(HPMONO)
  4437.  
  4438. ljetplus.dev: $(HPMONO) page.dev
  4439.     $(SETPDEV) ljetplus $(HPMONO)
  4440.  
  4441. ### Selecting ljet2p provides TIFF (mode 2) compression on LaserJet III,
  4442. ### IIIp, IIId, IIIsi, IId, and IIp. 
  4443.  
  4444. ljet2p.dev: $(HPMONO) page.dev
  4445.     $(SETPDEV) ljet2p $(HPMONO)
  4446.  
  4447. ### Selecting ljet3 provides Delta Row (mode 3) compression on LaserJet III,
  4448. ### IIIp, IIId, IIIsi.
  4449.  
  4450. ljet3.dev: $(HPMONO) page.dev
  4451.     $(SETPDEV) ljet3 $(HPMONO)
  4452.  
  4453. ### Selecting ljet3d also provides duplex printing capability.
  4454.  
  4455. ljet3d.dev: $(HPMONO) page.dev
  4456.     $(SETPDEV) ljet3d $(HPMONO)
  4457.  
  4458. ### Selecting ljet4 also provides Delta Row compression on LaserJet IV series.
  4459.  
  4460. ljet4.dev: $(HPMONO) page.dev
  4461.     $(SETPDEV) ljet4 $(HPMONO)
  4462.  
  4463. lp2563.dev: $(HPMONO) page.dev
  4464.     $(SETPDEV) lp2563 $(HPMONO)
  4465.  
  4466. oce9050.dev: $(HPMONO) page.dev
  4467.     $(SETPDEV) oce9050 $(HPMONO)
  4468.  
  4469. ### ------------------ The H-P LaserJet 5 and 6 devices ----------------- ###
  4470.  
  4471. ### These drivers use H-P's new PCL XL printer language, like H-P's
  4472. ### LaserJet 5 Enhanced driver for MS Windows.  We don't recommend using
  4473. ### them:
  4474. ###    - If you have a LJ5L, which isn't a "real" LaserJet 5, use the
  4475. ###    ljet4 driver instead.  (The lj5 drivers won't work.)
  4476. ###    - If you have any other model of LJ 5 or 6, use the pxlmono
  4477. ###    driver, which often produces much more compact output.
  4478.  
  4479. gdevpxat_h=gdevpxat.h
  4480. gdevpxen_h=gdevpxen.h
  4481. gdevpxop_h=gdevpxop.h
  4482.  
  4483. ljet5_=gdevlj56.$(OBJ) $(HPPCL)
  4484. lj5mono.dev: $(ljet5_) page.dev
  4485.     $(SETPDEV) lj5mono $(ljet5_)
  4486.  
  4487. lj5gray.dev: $(ljet5_) page.dev
  4488.     $(SETPDEV) lj5gray $(ljet5_)
  4489.  
  4490. gdevlj56.$(OBJ): gdevlj56.c $(PDEVH) $(gdevpcl_h)\
  4491.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h)
  4492.  
  4493. ### The H-P DeskJet, PaintJet, and DesignJet family color printer devices.###
  4494. ### Note: there are two different 500C drivers, both contributed by users.###
  4495. ###   If you have questions about the djet500c driver,                    ###
  4496. ###       please contact AKayser@et.tudelft.nl.                           ###
  4497. ###   If you have questions about the cdj* drivers,                       ###
  4498. ###       please contact g.cameron@biomed.abdn.ac.uk.                     ###
  4499. ###   If you have questions about the dnj560c driver,                     ###
  4500. ###       please contact koert@zen.cais.com.                              ###
  4501. ###   If you have questions about the lj4dith driver,                     ###
  4502. ###       please contact Eckhard.Rueggeberg@ts.go.dlr.de.                 ###
  4503. ###   If you have questions about the BJC600/BJC4000, BJC800, or ESCP     ###
  4504. ###       drivers, please contact Yves.Arrouye@imag.fr.                   ###
  4505.  
  4506. cdeskjet_=gdevcdj.$(OBJ) $(HPPCL)
  4507.  
  4508. cdeskjet.dev: $(cdeskjet_) page.dev
  4509.     $(SETPDEV) cdeskjet $(cdeskjet_)
  4510.  
  4511. cdjcolor.dev: $(cdeskjet_) page.dev
  4512.     $(SETPDEV) cdjcolor $(cdeskjet_)
  4513.  
  4514. cdjmono.dev: $(cdeskjet_) page.dev
  4515.     $(SETPDEV) cdjmono $(cdeskjet_)
  4516.  
  4517. cdj500.dev: $(cdeskjet_) page.dev
  4518.     $(SETPDEV) cdj500 $(cdeskjet_)
  4519.  
  4520. cdj550.dev: $(cdeskjet_) page.dev
  4521.     $(SETPDEV) cdj550 $(cdeskjet_)
  4522.  
  4523. declj250.dev: $(cdeskjet_) page.dev
  4524.     $(SETPDEV) declj250 $(cdeskjet_)
  4525.  
  4526. dnj650c.dev: $(cdeskjet_) page.dev
  4527.     $(SETPDEV) dnj650c $(cdeskjet_)
  4528.  
  4529. lj4dith.dev: $(cdeskjet_) page.dev
  4530.     $(SETPDEV) lj4dith $(cdeskjet_)
  4531.  
  4532. pj.dev: $(cdeskjet_) page.dev
  4533.     $(SETPDEV) pj $(cdeskjet_)
  4534.  
  4535. pjxl.dev: $(cdeskjet_) page.dev
  4536.     $(SETPDEV) pjxl $(cdeskjet_)
  4537.  
  4538. pjxl300.dev: $(cdeskjet_) page.dev
  4539.     $(SETPDEV) pjxl300 $(cdeskjet_)
  4540.  
  4541. # Note: the BJC600 driver also works for the BJC4000.
  4542. bjc600.dev: $(cdeskjet_) page.dev
  4543.     $(SETPDEV) bjc600 $(cdeskjet_)
  4544.  
  4545. bjc800.dev: $(cdeskjet_) page.dev
  4546.     $(SETPDEV) bjc800 $(cdeskjet_)
  4547.  
  4548. escp.dev: $(cdeskjet_) page.dev
  4549.     $(SETPDEV) escp $(cdeskjet_)
  4550.  
  4551. # NB: you can also customise the build if required, using
  4552. # -DBitsPerPixel=<number> if you wish the default to be other than 24
  4553. # for the generic drivers (cdj500, cdj550, pjxl300, pjtest, pjxltest).
  4554. gdevcdj.$(OBJ): gdevcdj.c $(std_h) $(PDEVH) gdevbjc.h\
  4555.  $(gsparam_h) $(gsstate_h) $(gxlum_h)\
  4556.  $(gdevpcl_h)
  4557.  
  4558. djet500c_=gdevdjtc.$(OBJ) $(HPPCL)
  4559. djet500c.dev: $(djet500c_) page.dev
  4560.     $(SETPDEV) djet500c $(djet500c_)
  4561.  
  4562. gdevdjtc.$(OBJ): gdevdjtc.c $(PDEVH) $(malloc__h) $(gdevpcl_h)
  4563.  
  4564. ### -------------------- The Mitsubishi CP50 printer -------------------- ###
  4565. ### Note: this driver was contributed by a user: please contact           ###
  4566. ###       Michael Hu (michael@ximage.com) if you have questions.          ###
  4567.  
  4568. cp50_=gdevcp50.$(OBJ)
  4569. cp50.dev: $(cp50_) page.dev
  4570.     $(SETPDEV) cp50 $(cp50_)
  4571.  
  4572. gdevcp50.$(OBJ): gdevcp50.c $(PDEVH)
  4573.  
  4574. ### ----------------- The generic Epson printer device ----------------- ###
  4575. ### Note: most of this code was contributed by users.  Please contact    ###
  4576. ###       the following people if you have questions:                    ###
  4577. ###   eps9mid - Guenther Thomsen (thomsen@cs.tu-berlin.de)               ###
  4578. ###   eps9high - David Wexelblat (dwex@mtgzfs3.att.com)                  ###
  4579. ###   ibmpro - James W. Birdsall (jwbirdsa@picarefy.picarefy.com)        ###
  4580.  
  4581. epson_=gdevepsn.$(OBJ)
  4582.  
  4583. epson.dev: $(epson_) page.dev
  4584.     $(SETPDEV) epson $(epson_)
  4585.  
  4586. eps9mid.dev: $(epson_) page.dev
  4587.     $(SETPDEV) eps9mid $(epson_)
  4588.  
  4589. eps9high.dev: $(epson_) page.dev
  4590.     $(SETPDEV) eps9high $(epson_)
  4591.  
  4592. gdevepsn.$(OBJ): gdevepsn.c $(PDEVH)
  4593.  
  4594. ### ----------------- The IBM Proprinter printer device ---------------- ###
  4595.  
  4596. ibmpro.dev: $(epson_) page.dev
  4597.     $(SETPDEV) ibmpro $(epson_)
  4598.  
  4599. ### -------------- The Epson LQ-2550 color printer device -------------- ###
  4600. ### Note: this driver was contributed by users: please contact           ###
  4601. ###       Dave St. Clair (dave@exlog.com) if you have questions.         ###
  4602.  
  4603. epsonc_=gdevepsc.$(OBJ)
  4604. epsonc.dev: $(epsonc_) page.dev
  4605.     $(SETPDEV) epsonc $(epsonc_)
  4606.  
  4607. gdevepsc.$(OBJ): gdevepsc.c $(PDEVH)
  4608.  
  4609. ### ------------- The Epson ESC/P 2 language printer devices ------------- ###
  4610. ### Note: these drivers were contributed by users.                         ###
  4611. ### For questions about the Stylus 800 and AP3250 drivers, please contact  ###
  4612. ###        Richard Brown (rab@tauon.ph.unimelb.edu.au).                    ###
  4613. ### For questions about the Stylus Color drivers, please contact           ###
  4614. ###        Gunther Hess (gunther@elmos.de).                                ###
  4615.  
  4616. ESCP2=gdevescp.$(OBJ)
  4617.  
  4618. gdevescp.$(OBJ): gdevescp.c $(PDEVH)
  4619.  
  4620. ap3250.dev: $(ESCP2) page.dev
  4621.     $(SETPDEV) ap3250 $(ESCP2)
  4622.  
  4623. st800.dev: $(ESCP2) page.dev
  4624.     $(SETPDEV) st800 $(ESCP2)
  4625.  
  4626. stcolor1_=gdevstc.$(OBJ) gdevstc1.$(OBJ) gdevstc2.$(OBJ)
  4627. stcolor2_=gdevstc3.$(OBJ) gdevstc4.$(OBJ)
  4628. stcolor.dev: $(stcolor1_) $(stcolor2_) page.dev
  4629.     $(SETPDEV) stcolor $(stcolor1_)
  4630.     $(ADDMOD) stcolor -obj $(stcolor2_)
  4631.  
  4632. gdevstc.$(OBJ): gdevstc.c gdevstc.h $(PDEVH)
  4633.  
  4634. gdevstc1.$(OBJ): gdevstc1.c gdevstc.h $(PDEVH)
  4635.  
  4636. gdevstc2.$(OBJ): gdevstc2.c gdevstc.h $(PDEVH)
  4637.  
  4638. gdevstc3.$(OBJ): gdevstc3.c gdevstc.h $(PDEVH)
  4639.  
  4640. gdevstc4.$(OBJ): gdevstc4.c gdevstc.h $(PDEVH)
  4641.  
  4642. ### --------------- Ugly/Update -> Unified Printer Driver ---------------- ###
  4643. ### For questions about this driver, please contact:                       ###
  4644. ###        Gunther Hess (gunther@elmos.de)                                 ###
  4645.  
  4646. uniprint_=gdevupd.$(OBJ)
  4647. uniprint.dev: $(uniprint_) page.dev
  4648.     $(SETPDEV) uniprint $(uniprint_)
  4649.  
  4650. gdevupd.$(OBJ): gdevupd.c $(PDEVH) $(gsparam_h)
  4651.  
  4652. ### -------------- cdj850 - HP 850c Driver under development ------------- ###
  4653. ### Since this driver is in the development-phase it is not distributed    ###
  4654. ### with ghostscript, but it is available via anonymous ftp from:          ###
  4655. ###                        ftp://bonk.ethz.ch                              ###
  4656. ### For questions about this driver, please contact:                       ###
  4657. ###       Uli Wortmann (E-Mail address inside the driver-package)          ###
  4658.  
  4659. cdeskjet8_=gdevcd8.$(OBJ) $(HPPCL)
  4660.  
  4661. cdj850.dev: $(cdeskjet8_) page.dev
  4662.     $(SETPDEV) cdj850 $(cdeskjet8_)
  4663.  
  4664. ### ------------ The H-P PaintJet color printer device ----------------- ###
  4665. ### Note: this driver also supports the DEC LJ250 color printer, which   ###
  4666. ###       has a PaintJet-compatible mode, and the PaintJet XL.           ###
  4667. ### If you have questions about the XL, please contact Rob Reiss         ###
  4668. ###       (rob@moray.berkeley.edu).                                      ###
  4669.  
  4670. PJET=gdevpjet.$(OBJ) $(HPPCL)
  4671.  
  4672. gdevpjet.$(OBJ): gdevpjet.c $(PDEVH) $(gdevpcl_h)
  4673.  
  4674. lj250.dev: $(PJET) page.dev
  4675.     $(SETPDEV) lj250 $(PJET)
  4676.  
  4677. paintjet.dev: $(PJET) page.dev
  4678.     $(SETPDEV) paintjet $(PJET)
  4679.  
  4680. pjetxl.dev: $(PJET) page.dev
  4681.     $(SETPDEV) pjetxl $(PJET)
  4682.  
  4683. ### -------------- Imagen ImPress Laser Printer device ----------------- ###
  4684. ### Note: this driver was contributed by a user: please contact          ###
  4685. ###       Alan Millar (AMillar@bolis.sf-bay.org) if you have questions.  ###
  4686. ### Set USE_BYTE_STREAM if using parallel interface;                     ###
  4687. ### Don't set it if using 'ipr' spooler (default).                       ###
  4688. ### You may also add -DA4 if needed for A4 paper.             ###
  4689.  
  4690. imagen_=gdevimgn.$(OBJ)
  4691. imagen.dev: $(imagen_) page.dev
  4692.     $(SETPDEV) imagen $(imagen_)
  4693.  
  4694. gdevimgn.$(OBJ): gdevimgn.c $(PDEVH)
  4695.     $(CCC) gdevimgn.c            # for ipr spooler
  4696. #    $(CCC) -DUSE_BYTE_STREAM gdevimgn.c    # for parallel
  4697.  
  4698. ### ------- The IBM 3852 JetPrinter color inkjet printer device -------- ###
  4699. ### Note: this driver was contributed by users: please contact           ###
  4700. ###       Kevin Gift (kgift@draper.com) if you have questions.           ###
  4701. ### Note that the paper size that can be addressed by the graphics mode  ###
  4702. ###   used in this driver is fixed at 7-1/2 inches wide (the printable   ###
  4703. ###   width of the jetprinter itself.)                                   ###
  4704.  
  4705. jetp3852_=gdev3852.$(OBJ)
  4706. jetp3852.dev: $(jetp3852_) page.dev
  4707.     $(SETPDEV) jetp3852 $(jetp3852_)
  4708.  
  4709. gdev3852.$(OBJ): gdev3852.c $(PDEVH) $(gdevpcl_h)
  4710.  
  4711. ### ---------- The Canon LBP-8II and LIPS III printer devices ---------- ###
  4712. ### Note: these drivers were contributed by users.                       ###
  4713. ### For questions about these drivers, please contact                    ###
  4714. ###       Lauri Paatero, lauri.paatero@paatero.pp.fi                     ###
  4715.  
  4716. lbp8_=gdevlbp8.$(OBJ)
  4717. lbp8.dev: $(lbp8_) page.dev
  4718.     $(SETPDEV) lbp8 $(lbp8_)
  4719.  
  4720. lips3.dev: $(lbp8_) page.dev
  4721.     $(SETPDEV) lips3 $(lbp8_)
  4722.  
  4723. gdevlbp8.$(OBJ): gdevlbp8.c $(PDEVH)
  4724.  
  4725. ### ----------- The DEC LN03/LA50/LA70/LA75 printer devices ------------ ###
  4726. ### Note: this driver was contributed by users: please contact           ###
  4727. ###       Ulrich Mueller (ulm@vsnhd1.cern.ch) if you have questions.     ###
  4728. ### For questions about LA50 and LA75, please contact                    ###
  4729. ###       Ian MacPhedran (macphed@dvinci.USask.CA).                      ###
  4730. ### For questions about the LA70, please contact                         ###
  4731. ###       Bruce Lowekamp (lowekamp@csugrad.cs.vt.edu).                   ###
  4732. ### For questions about the LA75plus, please contact                     ###
  4733. ###       Andre' Beck (Andre_Beck@IRS.Inf.TU-Dresden.de).                ###
  4734.  
  4735. ln03_=gdevln03.$(OBJ)
  4736. ln03.dev: $(ln03_) page.dev
  4737.     $(SETPDEV) ln03 $(ln03_)
  4738.  
  4739. la50.dev: $(ln03_) page.dev
  4740.     $(SETPDEV) la50 $(ln03_)
  4741.  
  4742. la70.dev: $(ln03_) page.dev
  4743.     $(SETPDEV) la70 $(ln03_)
  4744.  
  4745. la75.dev: $(ln03_) page.dev
  4746.     $(SETPDEV) la75 $(ln03_)
  4747.  
  4748. la75plus.dev: $(ln03_) page.dev
  4749.     $(SETPDEV) la75plus $(ln03_)
  4750.  
  4751. gdevln03.$(OBJ): gdevln03.c $(PDEVH)
  4752.  
  4753. # LA70 driver with low-resolution text enhancement.
  4754.  
  4755. la70t_=gdevla7t.$(OBJ)
  4756. la70t.dev: $(la70t_) page.dev
  4757.     $(SETPDEV) la70t $(la70t_)
  4758.  
  4759. gdevla7t.$(OBJ): gdevla7t.c $(PDEVH)
  4760.  
  4761. ### -------------- The Epson LP-8000 laser printer device -------------- ###
  4762. ### Note: this driver was contributed by a user: please contact Oleg     ###
  4763. ###       Oleg Fat'yanov <faty1@rlem.titech.ac.jp> if you have questions.###
  4764.  
  4765. lp8000_=gdevlp8k.$(OBJ)
  4766. lp8000.dev: $(lp8000_) page.dev
  4767.     $(SETPDEV) lp8000 $(lp8000_)
  4768.  
  4769. gdevlp8k.$(OBJ): gdevlp8k.c $(PDEVH)
  4770.  
  4771. ### -------------- The C.Itoh M8510 printer device --------------------- ###
  4772. ### Note: this driver was contributed by a user: please contact Bob      ###
  4773. ###       Smith <bob@snuffy.penfield.ny.us> if you have questions.       ###
  4774.  
  4775. m8510_=gdev8510.$(OBJ)
  4776. m8510.dev: $(m8510_) page.dev
  4777.     $(SETPDEV) m8510 $(m8510_)
  4778.  
  4779. gdev8510.$(OBJ): gdev8510.c $(PDEVH)
  4780.  
  4781. ### --------------------- The NEC P6 family devices -------------------- ###
  4782.  
  4783. necp6_=gdevnp6.$(OBJ)
  4784. necp6.dev: $(necp6_) page.dev
  4785.     $(SETPDEV) necp6 $(necp6_)
  4786.  
  4787. gdevnp6.$(OBJ): gdevnp6.c $(PDEVH)
  4788.  
  4789. ### ----------------- The Okidata MicroLine 182 device ----------------- ###
  4790. ### Note: this driver was contributed by a user: please contact          ###
  4791. ###       Maarten Koning (smeg@bnr.ca) if you have questions.            ###
  4792.  
  4793. oki182_=gdevo182.$(OBJ)
  4794. oki182.dev: $(oki182_) page.dev
  4795.     $(SETPDEV) oki182 $(oki182_)
  4796.  
  4797. gdevo182.$(OBJ): gdevo182.c $(PDEVH)
  4798.  
  4799. ### ------------- The Okidata IBM compatible printer device ------------ ###
  4800. ### Note: this driver was contributed by a user: please contact          ###
  4801. ###       Charles Mack (chasm@netcom.com) if you have questions.         ###
  4802.  
  4803. okiibm_=gdevokii.$(OBJ)
  4804. okiibm.dev: $(okiibm_) page.dev
  4805.     $(SETPDEV) okiibm $(okiibm_)
  4806.  
  4807. gdevokii.$(OBJ): gdevokii.c $(PDEVH)
  4808.  
  4809. ### ------------- The Ricoh 4081 laser printer device ------------------ ###
  4810. ### Note: this driver was contributed by users:                          ###
  4811. ###       please contact kdw@oasis.icl.co.uk if you have questions.      ###
  4812.  
  4813. r4081_=gdev4081.$(OBJ)
  4814. r4081.dev: $(r4081_) page.dev
  4815.     $(SETPDEV) r4081 $(r4081_)
  4816.  
  4817.  
  4818. gdev4081.$(OBJ): gdev4081.c $(PDEVH)
  4819.  
  4820. ### -------------------- Sony NWP533 printer device -------------------- ###
  4821. ### Note: this driver was contributed by a user: please contact Tero     ###
  4822. ###       Kivinen (kivinen@joker.cs.hut.fi) if you have questions.       ###
  4823.  
  4824. nwp533_=gdevn533.$(OBJ)
  4825. nwp533.dev: $(nwp533_) page.dev
  4826.     $(SETPDEV) nwp533 $(nwp533_)
  4827.  
  4828. gdevn533.$(OBJ): gdevn533.c $(PDEVH)
  4829.  
  4830. ### ------------------------- The SPARCprinter ------------------------- ###
  4831. ### Note: this driver was contributed by users: please contact Martin    ###
  4832. ###       Schulte (schulte@thp.uni-koeln.de) if you have questions.      ###
  4833. ###       He would also like to hear from anyone using the driver.       ###
  4834. ### Please consult the source code for additional documentation.         ###
  4835.  
  4836. sparc_=gdevsppr.$(OBJ)
  4837. sparc.dev: $(sparc_) page.dev
  4838.     $(SETPDEV) sparc $(sparc_)
  4839.  
  4840. gdevsppr.$(OBJ): gdevsppr.c $(PDEVH)
  4841.  
  4842. ### ----------------- The StarJet SJ48 device -------------------------- ###
  4843. ### Note: this driver was contributed by a user: if you have questions,  ###
  4844. ###                          .                                          ###
  4845. ###       please contact Mats Akerblom (f86ma@dd.chalmers.se).           ###
  4846.  
  4847. sj48_=gdevsj48.$(OBJ)
  4848. sj48.dev: $(sj48_) page.dev
  4849.     $(SETPDEV) sj48 $(sj48_)
  4850.  
  4851. gdevsj48.$(OBJ): gdevsj48.c $(PDEVH)
  4852.  
  4853. ### ----------------- Tektronix 4396d color printer -------------------- ###
  4854. ### Note: this driver was contributed by a user: please contact          ###
  4855. ###       Karl Hakimian (hakimian@haney.eecs.wsu.edu)                    ###
  4856. ###       if you have questions.                                         ###
  4857.  
  4858. t4693d_=gdev4693.$(OBJ)
  4859. t4693d2.dev: $(t4693d_) page.dev
  4860.     $(SETPDEV) t4693d2 $(t4693d_)
  4861.  
  4862. t4693d4.dev: $(t4693d_) page.dev
  4863.     $(SETPDEV) t4693d4 $(t4693d_)
  4864.  
  4865. t4693d8.dev: $(t4693d_) page.dev
  4866.     $(SETPDEV) t4693d8 $(t4693d_)
  4867.  
  4868. gdev4693.$(OBJ): gdev4693.c $(PDEVH)
  4869.  
  4870. ### -------------------- Tektronix ink-jet printers -------------------- ###
  4871. ### Note: this driver was contributed by a user: please contact          ###
  4872. ###       Karsten Spang (spang@nbivax.nbi.dk) if you have questions.     ###
  4873.  
  4874. tek4696_=gdevtknk.$(OBJ)
  4875. tek4696.dev: $(tek4696_) page.dev
  4876.     $(SETPDEV) tek4696 $(tek4696_)
  4877.  
  4878. gdevtknk.$(OBJ): gdevtknk.c $(PDEVH) $(malloc__h)
  4879.  
  4880. ### ----------------- The Xerox XES printer device --------------------- ###
  4881. ### Note: this driver was contributed by users: please contact           ###
  4882. ###       Peter Flass (flass@lbdrscs.bitnet) if you have questions.      ###
  4883.  
  4884. xes_=gdevxes.$(OBJ)
  4885. xes.dev: $(xes_) page.dev
  4886.     $(SETPDEV) xes $(xes_)
  4887.  
  4888. gdevxes.$(OBJ): gdevxes.c $(PDEVH)
  4889.  
  4890. ###### ------------------------- Fax devices ------------------------- ######
  4891.  
  4892. ### --------------- Generic PostScript system compatible fax ------------ ###
  4893.  
  4894. # This code doesn't work yet.  Don't even think about using it.
  4895.  
  4896. PSFAX=gdevpfax.$(OBJ)
  4897.  
  4898. psfax_=$(PSFAX)
  4899. psfax.dev: $(psfax_) page.dev
  4900.     $(SETPDEV) psfax $(psfax_)
  4901.     $(ADDMOD) psfax -iodev Fax
  4902.  
  4903. gdevpfax.$(OBJ): gdevpfax.c $(PDEVH) $(gsparam_h) $(gxiodev_h)
  4904.  
  4905. ### ------------------------- The DigiFAX device ------------------------ ###
  4906. ###    This driver outputs images in a format suitable for use with       ###
  4907. ###    DigiBoard, Inc.'s DigiFAX software.  Use -sDEVICE=dfaxhigh for     ###
  4908. ###    high resolution output, -sDEVICE=dfaxlow for normal output.        ###
  4909. ### Note: this driver was contributed by a user: please contact           ###
  4910. ###       Rick Richardson (rick@digibd.com) if you have questions.        ###
  4911.  
  4912. dfax_=gdevdfax.$(OBJ) gdevtfax.$(OBJ)
  4913.  
  4914. dfaxlow.dev: $(dfax_) page.dev
  4915.     $(SETPDEV) dfaxlow $(dfax_)
  4916.     $(ADDMOD) dfaxlow -include cfe
  4917.  
  4918. dfaxhigh.dev: $(dfax_) page.dev
  4919.     $(SETPDEV) dfaxhigh $(dfax_)
  4920.     $(ADDMOD) dfaxhigh -include cfe
  4921.  
  4922. gdevdfax.$(OBJ): gdevdfax.c $(PDEVH) $(scfx_h) $(strimpl_h)
  4923.  
  4924. ### --------------See under TIFF below for fax-format TIFF -------------- ###
  4925.  
  4926. ###### ------------------- High-level file formats ------------------- ######
  4927.  
  4928. # Support for PostScript and PDF
  4929.  
  4930. gdevpsdf_h=gdevpsdf.h $(gdevvec_h) $(strimpl_h)
  4931. gdevpstr_h=gdevpstr.h
  4932.  
  4933. gdevpsdf.$(OBJ): gdevpsdf.c $(stdio__h) $(string__h)\
  4934.  $(gserror_h) $(gserrors_h) $(gsmemory_h) $(gsparam_h) $(gstypes_h)\
  4935.  $(gxdevice_h)\
  4936.  $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)\
  4937.  $(gdevpsdf_h) $(gdevpstr_h)
  4938.  
  4939. gdevpstr.$(OBJ): gdevpstr.c $(math__h) $(stdio__h) $(string__h)\
  4940.  $(gdevpstr_h) $(stream_h)
  4941.  
  4942. # PostScript and EPS writers
  4943.  
  4944. pswrite1_=gdevps.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4945. pswrite2_=scantab.$(OBJ) sfilter2.$(OBJ)
  4946. pswrite_=$(pswrite1_) $(pswrite2_)
  4947. epswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4948.     $(SETDEV) epswrite $(pswrite1_)
  4949.     $(ADDMOD) epswrite $(pswrite2_)
  4950.     $(ADDMOD) epswrite -include vector
  4951.  
  4952. pswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4953.     $(SETDEV) pswrite $(pswrite1_)
  4954.     $(ADDMOD) pswrite $(pswrite2_)
  4955.     $(ADDMOD) pswrite -include vector
  4956.  
  4957. gdevps.$(OBJ): gdevps.c $(GDEV) $(math__h) $(time__h)\
  4958.  $(gscdefs_h) $(gscspace_h) $(gsparam_h) $(gsiparam_h) $(gsmatrix_h)\
  4959.  $(gxdcolor_h)\
  4960.  $(sa85x_h) $(strimpl_h)\
  4961.  $(gdevpsdf_h) $(gdevpstr_h)
  4962.  
  4963. # PDF writer
  4964. # Note that gs_pdfwr.ps will only actually be loaded if the configuration
  4965. # includes a PostScript interpreter.
  4966.  
  4967. pdfwrite1_=gdevpdf.$(OBJ) gdevpdfi.$(OBJ) gdevpdfm.$(OBJ)
  4968. pdfwrite2_=gdevpdfp.$(OBJ) gdevpdft.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4969. pdfwrite3_=gsflip.$(OBJ) scantab.$(OBJ) sfilter2.$(OBJ) sstring.$(OBJ)
  4970. pdfwrite_=$(pdfwrite1_) $(pdfwrite2_) $(pdfwrite3_)
  4971. pdfwrite.dev: $(ECHOGS_XE) $(pdfwrite_) \
  4972.   cmyklib.dev cfe.dev dcte.dev lzwe.dev rle.dev vector.dev
  4973.     $(SETDEV) pdfwrite $(pdfwrite1_)
  4974.     $(ADDMOD) pdfwrite $(pdfwrite2_)
  4975.     $(ADDMOD) pdfwrite $(pdfwrite3_)
  4976.     $(ADDMOD) pdfwrite -ps gs_pdfwr
  4977.     $(ADDMOD) pdfwrite -include cmyklib cfe dcte lzwe rle vector
  4978.  
  4979. gdevpdfx_h=gdevpdfx.h $(gsparam_h) $(gxdevice_h) $(gxline_h) $(stream_h)\
  4980.  $(gdevpsdf_h) $(gdevpstr_h)
  4981.  
  4982. gdevpdf.$(OBJ): gdevpdf.c $(math__h) $(string__h) $(time__h) $(gp_h) \
  4983.   $(gdevpdfx_h) $(gscdefs_h) $(gserrors_h) \
  4984.   $(gx_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gxpaint_h) \
  4985.   $(gzcpath_h) $(gzpath_h) $(scfx_h) $(strimpl_h)
  4986.  
  4987. gdevpdfi.$(OBJ): gdevpdfi.c $(memory__h) $(gx_h) \
  4988.   $(gdevpdfx_h) $(gserrors_h) $(gsflip_h) $(gxcspace_h) $(gxistate_h) \
  4989.   $(sa85x_h) $(scfx_h) $(srlx_h) $(strimpl_h)
  4990.  
  4991. gdevpdfm.$(OBJ): gdevpdfm.c $(memory__h) $(string__h) $(gx_h) \
  4992.   $(gdevpdfx_h) $(gserrors_h) $(gsutil_h) $(scanchar_h)
  4993.  
  4994. gdevpdfp.$(OBJ): gdevpdfp.c $(gx_h)\
  4995.  $(gdevpdfx_h) $(gserrors_h)
  4996.  
  4997. gdevpdft.$(OBJ): gdevpdft.c $(string__h) $(gx_h)\
  4998.  $(gdevpdfx_h) $(gserrors_h) $(gsutil_h)\
  4999.  $(sstring_h) $(strimpl_h)
  5000.  
  5001. # High-level PCL XL writer
  5002.  
  5003. pxl_=gdevpx.$(OBJ)
  5004. pxlmono.dev: $(pxl_) $(GDEV) vector.dev
  5005.     $(SETDEV) pxlmono $(pxl_)
  5006.     $(ADDMOD) pxlmono -include vector
  5007.  
  5008. pxlcolor.dev: $(pxl_) $(GDEV) vector.dev
  5009.     $(SETDEV) pxlcolor $(pxl_)
  5010.     $(ADDMOD) pxlcolor -include vector
  5011.  
  5012. gdevpx.$(OBJ): gdevpx.c $(math__h) $(memory__h) $(string__h)\
  5013.  $(gx_h) $(gsccolor_h) $(gsdcolor_h) $(gserrors_h)\
  5014.  $(gxcspace_h) $(gxdevice_h) $(gxpath_h)\
  5015.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h) $(gdevvec_h)\
  5016.  $(srlx_h) $(strimpl_h)
  5017.  
  5018. ###### --------------------- Raster file formats --------------------- ######
  5019.  
  5020. ### --------------------- The "plain bits" devices ---------------------- ###
  5021.  
  5022. bit_=gdevbit.$(OBJ)
  5023.  
  5024. bit.dev: $(bit_) page.dev
  5025.     $(SETPDEV) bit $(bit_)
  5026.  
  5027. bitrgb.dev: $(bit_) page.dev
  5028.     $(SETPDEV) bitrgb $(bit_)
  5029.  
  5030. bitcmyk.dev: $(bit_) page.dev
  5031.     $(SETPDEV) bitcmyk $(bit_)
  5032.  
  5033. gdevbit.$(OBJ): gdevbit.c $(PDEVH) $(gsparam_h) $(gxlum_h)
  5034.  
  5035. ### ------------------------- .BMP file formats ------------------------- ###
  5036.  
  5037. bmp_=gdevbmp.$(OBJ) gdevpccm.$(OBJ)
  5038.  
  5039. gdevbmp.$(OBJ): gdevbmp.c $(PDEVH) $(gdevpccm_h)
  5040.  
  5041. bmpmono.dev: $(bmp_) page.dev
  5042.     $(SETPDEV) bmpmono $(bmp_)
  5043.  
  5044. bmp16.dev: $(bmp_) page.dev
  5045.     $(SETPDEV) bmp16 $(bmp_)
  5046.  
  5047. bmp256.dev: $(bmp_) page.dev
  5048.     $(SETPDEV) bmp256 $(bmp_)
  5049.  
  5050. bmp16m.dev: $(bmp_) page.dev
  5051.     $(SETPDEV) bmp16m $(bmp_)
  5052.  
  5053. ### -------------------------- CGM file format ------------------------- ###
  5054. ### This driver is under development.  Use at your own risk.             ###
  5055. ### The output is very low-level, consisting only of rectangles and      ###
  5056. ### cell arrays.                                                         ###
  5057.  
  5058. cgm_=gdevcgm.$(OBJ) gdevcgml.$(OBJ)
  5059.  
  5060. gdevcgml_h=gdevcgml.h
  5061. gdevcgmx_h=gdevcgmx.h $(gdevcgml_h)
  5062.  
  5063. gdevcgm.$(OBJ): gdevcgm.c $(GDEV) $(memory__h)\
  5064.  $(gsparam_h) $(gdevpccm_h) $(gdevcgml_h)
  5065.  
  5066. gdevcgml.$(OBJ): gdevcgml.c $(memory__h) $(stdio__h)\
  5067.  $(gdevcgmx_h)
  5068.  
  5069. cgmmono.dev: $(cgm_)
  5070.     $(SETDEV) cgmmono $(cgm_)
  5071.  
  5072. cgm8.dev: $(cgm_)
  5073.     $(SETDEV) cgm8 $(cgm_)
  5074.  
  5075. cgm24.dev: $(cgm_)
  5076.     $(SETDEV) cgm24 $(cgm_)
  5077.  
  5078. ### -------------------- The CIF file format for VLSI ------------------ ###
  5079. ### Note: this driver was contributed by a user: please contact          ###
  5080. ###       Frederic Petrot (petrot@masi.ibp.fr) if you have questions.    ###
  5081.  
  5082. cif_=gdevcif.$(OBJ)
  5083. cif.dev: $(cif_) page.dev
  5084.     $(SETPDEV) cif $(cif_)
  5085.  
  5086. gdevcif.$(OBJ): gdevcif.c $(PDEVH)
  5087.  
  5088. ### ------------------------- JPEG file format ------------------------- ###
  5089.  
  5090. jpeg_=gdevjpeg.$(OBJ)
  5091.  
  5092. # RGB output
  5093. jpeg.dev: $(jpeg_) sdcte.dev page.dev
  5094.     $(SETPDEV) jpeg $(jpeg_)
  5095.     $(ADDMOD) jpeg -include sdcte
  5096.  
  5097. # Gray output
  5098. jpeggray.dev: $(jpeg_) sdcte.dev page.dev
  5099.     $(SETPDEV) jpeggray $(jpeg_)
  5100.     $(ADDMOD) jpeggray -include sdcte
  5101.  
  5102. gdevjpeg.$(OBJ): gdevjpeg.c $(stdio__h) $(PDEVH)\
  5103.  $(sdct_h) $(sjpeg_h) $(stream_h) $(strimpl_h) jpeglib.h
  5104.  
  5105. ### ------------------------- MIFF file format ------------------------- ###
  5106. ### Right now we support only 24-bit direct color, but we might add more ###
  5107. ### formats in the future.                                               ###
  5108.  
  5109. miff_=gdevmiff.$(OBJ)
  5110.  
  5111. miff24.dev: $(miff_) page.dev
  5112.     $(SETPDEV) miff24 $(miff_)
  5113.  
  5114. gdevmiff.$(OBJ): gdevmiff.c $(PDEVH)
  5115.  
  5116. ### --------------------------- MGR devices ---------------------------- ###
  5117. ### Note: these drivers were contributed by a user: please contact       ###
  5118. ###       Carsten Emde (carsten@ce.pr.net.ch) if you have questions.     ###
  5119.  
  5120. MGR=gdevmgr.$(OBJ) gdevpccm.$(OBJ)
  5121.  
  5122. gdevmgr.$(OBJ): gdevmgr.c $(PDEVH) $(gdevpccm_h) gdevmgr.h
  5123.  
  5124. mgrmono.dev: $(MGR) page.dev
  5125.     $(SETPDEV) mgrmono $(MGR)
  5126.  
  5127. mgrgray2.dev: $(MGR) page.dev
  5128.     $(SETPDEV) mgrgray2 $(MGR)
  5129.  
  5130. mgrgray4.dev: $(MGR) page.dev
  5131.     $(SETPDEV) mgrgray4 $(MGR)
  5132.  
  5133. mgrgray8.dev: $(MGR) page.dev
  5134.     $(SETPDEV) mgrgray8 $(MGR)
  5135.  
  5136. mgr4.dev: $(MGR) page.dev
  5137.     $(SETPDEV) mgr4 $(MGR)
  5138.  
  5139. mgr8.dev: $(MGR) page.dev
  5140.     $(SETPDEV) mgr8 $(MGR)
  5141.  
  5142. ### ------------------------- PCX file formats ------------------------- ###
  5143.  
  5144. pcx_=gdevpcx.$(OBJ) gdevpccm.$(OBJ)
  5145.  
  5146. gdevpcx.$(OBJ): gdevpcx.c $(PDEVH) $(gdevpccm_h) $(gxlum_h)
  5147.  
  5148. pcxmono.dev: $(pcx_) page.dev
  5149.     $(SETPDEV) pcxmono $(pcx_)
  5150.  
  5151. pcxgray.dev: $(pcx_) page.dev
  5152.     $(SETPDEV) pcxgray $(pcx_)
  5153.  
  5154. pcx16.dev: $(pcx_) page.dev
  5155.     $(SETPDEV) pcx16 $(pcx_)
  5156.  
  5157. pcx256.dev: $(pcx_) page.dev
  5158.     $(SETPDEV) pcx256 $(pcx_)
  5159.  
  5160. pcx24b.dev: $(pcx_) page.dev
  5161.     $(SETPDEV) pcx24b $(pcx_)
  5162.  
  5163. pcxcmyk.dev: $(pcx_) page.dev
  5164.     $(SETPDEV) pcxcmyk $(pcx_)
  5165.  
  5166. # The 2-up PCX device is here only as an example, and for testing.
  5167. pcx2up.dev: $(LIB_MAK) $(ECHOGS_XE) gdevp2up.$(OBJ) page.dev pcx256.dev
  5168.     $(SETPDEV) pcx2up gdevp2up.$(OBJ)
  5169.     $(ADDMOD) pcx2up -include pcx256
  5170.  
  5171. gdevp2up.$(OBJ): gdevp2up.c $(AK)\
  5172.  $(gdevpccm_h) $(gdevprn_h) $(gxclpage_h)
  5173.  
  5174. ### ------------------- Portable Bitmap file formats ------------------- ###
  5175. ### For more information, see the pbm(5), pgm(5), and ppm(5) man pages.  ###
  5176.  
  5177. pxm_=gdevpbm.$(OBJ)
  5178.  
  5179. gdevpbm.$(OBJ): gdevpbm.c $(PDEVH) $(gscdefs_h) $(gxlum_h)
  5180.  
  5181. ### Portable Bitmap (PBM, plain or raw format, magic numbers "P1" or "P4")
  5182.  
  5183. pbm.dev: $(pxm_) page.dev
  5184.     $(SETPDEV) pbm $(pxm_)
  5185.  
  5186. pbmraw.dev: $(pxm_) page.dev
  5187.     $(SETPDEV) pbmraw $(pxm_)
  5188.  
  5189. ### Portable Graymap (PGM, plain or raw format, magic numbers "P2" or "P5")
  5190.  
  5191. pgm.dev: $(pxm_) page.dev
  5192.     $(SETPDEV) pgm $(pxm_)
  5193.  
  5194. pgmraw.dev: $(pxm_) page.dev
  5195.     $(SETPDEV) pgmraw $(pxm_)
  5196.  
  5197. # PGM with automatic optimization to PBM if this is possible.
  5198.  
  5199. pgnm.dev: $(pxm_) page.dev
  5200.     $(SETPDEV) pgnm $(pxm_)
  5201.  
  5202. pgnmraw.dev: $(pxm_) page.dev
  5203.     $(SETPDEV) pgnmraw $(pxm_)
  5204.  
  5205. ### Portable Pixmap (PPM, plain or raw format, magic numbers "P3" or "P6")
  5206.  
  5207. ppm.dev: $(pxm_) page.dev
  5208.     $(SETPDEV) ppm $(pxm_)
  5209.  
  5210. ppmraw.dev: $(pxm_) page.dev
  5211.     $(SETPDEV) ppmraw $(pxm_)
  5212.  
  5213. # PPM with automatic optimization to PGM or PBM if possible.
  5214.  
  5215. pnm.dev: $(pxm_) page.dev
  5216.     $(SETPDEV) pnm $(pxm_)
  5217.  
  5218. pnmraw.dev: $(pxm_) page.dev
  5219.     $(SETPDEV) pnmraw $(pxm_)
  5220.  
  5221. ### Portable inKmap (CMYK internally, converted to PPM=RGB at output time)
  5222.  
  5223. pkm.dev: $(pxm_) page.dev
  5224.     $(SETPDEV) pkm $(pxm_)
  5225.  
  5226. pkmraw.dev: $(pxm_) page.dev
  5227.     $(SETPDEV) pkmraw $(pxm_)
  5228.  
  5229. ### --------------- Portable Network Graphics file format --------------- ###
  5230. ### Requires libpng 0.81 and zlib 0.95 (or more recent versions).         ###
  5231. ### See libpng.mak and zlib.mak for more details.                         ###
  5232.  
  5233. png_=gdevpng.$(OBJ) gdevpccm.$(OBJ)
  5234.  
  5235. gdevpng.$(OBJ): gdevpng.c $(gdevprn_h) $(gdevpccm_h) $(gscdefs_h) $(PSRC)png.h
  5236.     $(CCCP) gdevpng.c
  5237.  
  5238. pngmono.dev: libpng.dev $(png_) page.dev
  5239.     $(SETPDEV) pngmono  $(png_)
  5240.     $(ADDMOD) pngmono  -include libpng
  5241.  
  5242. pnggray.dev: libpng.dev $(png_) page.dev
  5243.     $(SETPDEV) pnggray  $(png_)
  5244.     $(ADDMOD) pnggray  -include libpng
  5245.  
  5246. png16.dev: libpng.dev $(png_) page.dev
  5247.     $(SETPDEV) png16  $(png_)
  5248.     $(ADDMOD) png16  -include libpng
  5249.  
  5250. png256.dev: libpng.dev $(png_) page.dev
  5251.     $(SETPDEV) png256  $(png_)
  5252.     $(ADDMOD) png256  -include libpng
  5253.  
  5254. png16m.dev: libpng.dev $(png_) page.dev
  5255.     $(SETPDEV) png16m  $(png_)
  5256.     $(ADDMOD) png16m  -include libpng
  5257.  
  5258. ### ---------------------- PostScript image format ---------------------- ###
  5259. ### These devices make it possible to print Level 2 files on a Level 1    ###
  5260. ###   printer, by converting them to a bitmap in PostScript format.       ###
  5261.  
  5262. ps_=gdevpsim.$(OBJ)
  5263.  
  5264. gdevpsim.$(OBJ): gdevpsim.c $(PDEVH)
  5265.  
  5266. psmono.dev: $(ps_) page.dev
  5267.     $(SETPDEV) psmono $(ps_)
  5268.  
  5269. psgray.dev: $(ps_) page.dev
  5270.     $(SETPDEV) psgray $(ps_)
  5271.  
  5272. # Someday there will be RGB and CMYK variants....
  5273.  
  5274. ### -------------------------- SGI RGB pixmaps -------------------------- ###
  5275.  
  5276. sgirgb_=gdevsgi.$(OBJ)
  5277.  
  5278. gdevsgi.$(OBJ): gdevsgi.c $(PDEVH) gdevsgi.h
  5279.  
  5280. sgirgb.dev: $(sgirgb_) page.dev
  5281.     $(SETPDEV) sgirgb $(sgirgb_)
  5282.  
  5283. ### -------------------- Plain or TIFF fax encoding --------------------- ###
  5284. ###    Use -sDEVICE=tiffg3 or tiffg4 and                  ###
  5285. ###      -r204x98 for low resolution output, or              ###
  5286. ###      -r204x196 for high resolution output                  ###
  5287. ###    These drivers recognize 3 page sizes: letter, A4, and B4.      ###
  5288.  
  5289. gdevtifs_h=gdevtifs.h
  5290.  
  5291. tfax_=gdevtfax.$(OBJ)
  5292. tfax.dev: $(tfax_) cfe.dev lzwe.dev rle.dev tiffs.dev
  5293.     $(SETMOD) tfax $(tfax_)
  5294.     $(ADDMOD) tfax -include cfe lzwe rle tiffs
  5295.  
  5296. gdevtfax.$(OBJ): gdevtfax.c $(PDEVH)\
  5297.  $(gdevtifs_h) $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)
  5298.  
  5299. ### Plain G3/G4 fax with no header
  5300.  
  5301. faxg3.dev: tfax.dev
  5302.     $(SETDEV) faxg3 -include tfax
  5303.  
  5304. faxg32d.dev: tfax.dev
  5305.     $(SETDEV) faxg32d -include tfax
  5306.  
  5307. faxg4.dev: tfax.dev
  5308.     $(SETDEV) faxg4 -include tfax
  5309.  
  5310. ### ---------------------------- TIFF formats --------------------------- ###
  5311.  
  5312. tiffs_=gdevtifs.$(OBJ)
  5313. tiffs.dev: $(tiffs_) page.dev
  5314.     $(SETMOD) tiffs $(tiffs_)
  5315.     $(ADDMOD) tiffs -include page
  5316.  
  5317. gdevtifs.$(OBJ): gdevtifs.c $(PDEVH) $(stdio__h) $(time__h) \
  5318.  $(gdevtifs_h) $(gscdefs_h) $(gstypes_h)
  5319.  
  5320. # Black & white, G3/G4 fax
  5321.  
  5322. tiffcrle.dev: tfax.dev
  5323.     $(SETDEV) tiffcrle -include tfax
  5324.  
  5325. tiffg3.dev: tfax.dev
  5326.     $(SETDEV) tiffg3 -include tfax
  5327.  
  5328. tiffg32d.dev: tfax.dev
  5329.     $(SETDEV) tiffg32d -include tfax
  5330.  
  5331. tiffg4.dev: tfax.dev
  5332.     $(SETDEV) tiffg4 -include tfax
  5333.  
  5334. # Black & white, LZW compression
  5335.  
  5336. tifflzw.dev: tfax.dev
  5337.     $(SETDEV) tifflzw -include tfax
  5338.  
  5339. # Black & white, PackBits compression
  5340.  
  5341. tiffpack.dev: tfax.dev
  5342.     $(SETDEV) tiffpack -include tfax
  5343.  
  5344. # RGB, no compression
  5345.  
  5346. tiffrgb_=gdevtfnx.$(OBJ)
  5347.  
  5348. tiff12nc.dev: $(tiffrgb_) tiffs.dev
  5349.     $(SETPDEV) tiff12nc $(tiffrgb_)
  5350.     $(ADDMOD) tiff12nc -include tiffs
  5351.  
  5352. tiff24nc.dev: $(tiffrgb_) tiffs.dev
  5353.     $(SETPDEV) tiff24nc $(tiffrgb_)
  5354.     $(ADDMOD) tiff24nc -include tiffs
  5355.  
  5356. gdevtfnx.$(OBJ): gdevtfnx.c $(PDEVH) $(gdevtifs_h)
  5357. #    Copyright (C) 1990, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5358. # This file is part of Aladdin Ghostscript.
  5359. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5360. # or distributor accepts any responsibility for the consequences of using it,
  5361. # or for whether it serves any particular purpose or works at all, unless he
  5362. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5363. # License (the "License") for full details.
  5364. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5365. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5366. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5367. # under certain conditions described in the License.  Among other things, the
  5368. # License requires that the copyright notice and this notice be preserved on
  5369. # all copies.
  5370.  
  5371. # Partial makefile common to all Unix configurations.
  5372.  
  5373. # This is the last part of the makefile for Unix configurations.
  5374. # Since Unix make doesn't have an 'include' facility, we concatenate
  5375. # the various parts of the makefile together by brute force (in tar_cat).
  5376.  
  5377. # Define the name of this makefile.
  5378. UNIXTAIL_MAK=unixtail.mak
  5379.  
  5380. # The following prevents GNU make from constructing argument lists that
  5381. # include all environment variables, which can easily be longer than
  5382. # brain-damaged system V allows.
  5383.  
  5384. .NOEXPORT:
  5385.  
  5386. # -------------------------------- Library -------------------------------- #
  5387.  
  5388. ## The Unix platforms
  5389.  
  5390. # We have to include a test for the existence of sys/time.h,
  5391. # because some System V platforms don't have it.
  5392.  
  5393. # Define pipes as a separable feature.
  5394.  
  5395. pipe_=gdevpipe.$(OBJ)
  5396. pipe.dev: $(UNIXTAIL_MAK) $(ECHOGS_XE) $(pipe_)
  5397.     $(SETMOD) pipe $(pipe_)
  5398.     $(ADDMOD) pipe -iodev pipe
  5399.  
  5400. gdevpipe.$(OBJ): gdevpipe.c $(AK) $(errno__h) $(stdio__h) $(string__h) \
  5401.   $(gserror_h) $(gsmemory_h) $(gstypes_h) $(gxiodev_h) $(stream_h)
  5402.  
  5403. # Unix platforms other than System V, and also System V Release 4
  5404. # (SVR4) platforms.
  5405. unix__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ)
  5406. unix_.dev: $(unix__)
  5407.     $(SETMOD) unix_ $(unix__)
  5408.  
  5409. gp_unix.$(OBJ): gp_unix.c $(AK) $(string__h) $(gx_h) $(gsexit_h) $(gp_h) \
  5410.   $(time__h)
  5411.  
  5412. # System V platforms other than SVR4, which lack some system calls,
  5413. # but have pipes.
  5414. sysv__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ) gp_sysv.$(OBJ)
  5415. sysv_.dev: $(sysv__)
  5416.     $(SETMOD) sysv_ $(sysv__)
  5417.  
  5418. gp_sysv.$(OBJ): gp_sysv.c $(stdio__h) $(time__h) $(AK)
  5419.  
  5420. # -------------------------- Auxiliary programs --------------------------- #
  5421.  
  5422. $(ANSI2KNR_XE): ansi2knr.c
  5423.     $(CCA2K) $(O)$(ANSI2KNR_XE) ansi2knr.c
  5424.  
  5425. $(ECHOGS_XE): echogs.c $(AK)
  5426.     $(CCAUX) $(O)$(ECHOGS_XE) echogs.c
  5427.  
  5428. # On the RS/6000 (at least), compiling genarch.c with gcc with -O
  5429. # produces a buggy executable.
  5430. $(GENARCH_XE): genarch.c $(AK) $(stdpre_h)
  5431.     $(CCAUX) $(O)$(GENARCH_XE) genarch.c
  5432.  
  5433. $(GENCONF_XE): genconf.c $(AK) $(stdpre_h)
  5434.     $(CCAUX) $(O)$(GENCONF_XE) genconf.c
  5435.  
  5436. $(GENINIT_XE): geninit.c $(AK) $(stdio__h) $(string__h)
  5437.     $(CCAUX) $(O)$(GENINIT_XE) geninit.c
  5438.  
  5439. # Query the environment to construct gconfig_.h.
  5440. # The "else true; is required because Ultrix's implementation of sh -e
  5441. # terminates execution of a command if any error occurs, even if the command
  5442. # traps the error with ||.
  5443. INCLUDE=/usr/include
  5444. gconfig_.h: $(UNIXTAIL_MAK) $(ECHOGS_XE)
  5445.     ./echogs -w gconfig_.h -x 2f2a -s This file was generated automatically. -s -x 2a2f
  5446.     if ( test -f $(INCLUDE)/dirent.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_DIRENT_H; else true; fi
  5447.     if ( test -f $(INCLUDE)/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_NDIR_H; else true; fi
  5448.     if ( test -f $(INCLUDE)/sys/dir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_DIR_H; else true; fi
  5449.     if ( test -f $(INCLUDE)/sys/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_NDIR_H; else true; fi
  5450.     if ( test -f $(INCLUDE)/sys/time.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIME_H; else true; fi
  5451.     if ( test -f $(INCLUDE)/sys/times.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIMES_H; else true; fi
  5452.  
  5453. # ----------------------------- Main program ------------------------------ #
  5454.  
  5455. ### Library files and archive
  5456.  
  5457. LIB_ARCHIVE_ALL=$(LIB_ALL) $(DEVS_ALL)\
  5458.  gsnogc.$(OBJ) gconfig.$(OBJ) gscdefs.$(OBJ)
  5459.  
  5460. # Build an archive for the library only.
  5461. # This is not used in a standard build.
  5462. GSLIB_A=$(GS)lib.a
  5463. $(GSLIB_A): $(LIB_ARCHIVE_ALL)
  5464.     rm -f $(GSLIB_A)
  5465.     $(AR) $(ARFLAGS) $(GSLIB_A) $(LIB_ARCHIVE_ALL)
  5466.     $(RANLIB) $(GSLIB_A)
  5467.  
  5468. ### Interpreter main program
  5469.  
  5470. INT_ARCHIVE_ALL=imainarg.$(OBJ) imain.$(OBJ) $(INT_ALL) $(DEVS_ALL)\
  5471.  gconfig.$(OBJ) gscdefs.$(OBJ)
  5472. XE_ALL=gs.$(OBJ) $(INT_ARCHIVE_ALL)
  5473.  
  5474. # Build a library archive for the entire interpreter.
  5475. # This is not used in a standard build.
  5476. GS_A=$(GS).a
  5477. $(GS_A): $(INT_ARCHIVE_ALL)
  5478.     rm -f $(GS_A)
  5479.     $(AR) $(ARFLAGS) $(GS_A) $(INT_ARCHIVE_ALL)
  5480.     $(RANLIB) $(GS_A)
  5481.  
  5482. # Here is the final link step.  The stuff with LD_RUN_PATH is for SVR4
  5483. # systems with dynamic library loading; I believe it's harmless elsewhere.
  5484. # The resetting of the environment variables to empty strings is for SCO Unix,
  5485. # which has limited environment space.
  5486. $(GS_XE): ld.tr echogs $(XE_ALL)
  5487.     ./echogs -w ldt.tr -n - $(CCLD) $(LDFLAGS) $(XLIBDIRS) -o $(GS_XE)
  5488.     ./echogs -a ldt.tr -n -s gs.$(OBJ) -s
  5489.     cat ld.tr >>ldt.tr
  5490.     ./echogs -a ldt.tr -s - $(EXTRALIBS) -lm
  5491.     LD_RUN_PATH=$(XLIBDIR); export LD_RUN_PATH; \
  5492.     XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \
  5493.     FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \
  5494.     DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \
  5495.     DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \
  5496.     DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= \
  5497.     $(SH) <ldt.tr
  5498. #    Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5499. # This file is part of Aladdin Ghostscript.
  5500. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5501. # or distributor accepts any responsibility for the consequences of using it,
  5502. # or for whether it serves any particular purpose or works at all, unless he
  5503. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5504. # License (the "License") for full details.
  5505. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5506. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5507. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5508. # under certain conditions described in the License.  Among other things, the
  5509. # License requires that the copyright notice and this notice be preserved on
  5510. # all copies.
  5511.  
  5512. # Partial makefile common to all Unix and Desqview/X configurations.
  5513.  
  5514. # This is the very last part of the makefile for these configurations.
  5515. # Since Unix make doesn't have an 'include' facility, we concatenate
  5516. # the various parts of the makefile together by brute force (in tar_cat).
  5517.  
  5518. # Define a rule for building profiling configurations.
  5519. pg:
  5520.     make GENOPT='' CFLAGS='-pg -O $(GCFLAGS) $(XCFLAGS)' LDFLAGS='$(XLDFLAGS) -pg' XLIBS='Xt SM ICE Xext X11' CCLEAF='$(CCC)'
  5521.  
  5522. # Define a rule for building debugging configurations.
  5523. debug:
  5524.     make GENOPT='-DDEBUG' CFLAGS='-g -O $(GCFLAGS) $(XCFLAGS)'
  5525.  
  5526. # The rule for gconfigv.h is here because it is shared between Unix and
  5527. # DV/X environments.
  5528. gconfigv.h: unix-end.mak $(MAKEFILE) $(ECHOGS_XE)
  5529.     $(EXP)echogs -w gconfigv.h -x 23 define USE_ASM -x 2028 -q $(USE_ASM)-0 -x 29
  5530.     $(EXP)echogs -a gconfigv.h -x 23 define USE_FPU -x 2028 -q $(FPU_TYPE)-0 -x 29
  5531.     $(EXP)echogs -a gconfigv.h -x 23 define EXTEND_NAMES 0$(EXTEND_NAMES)
  5532.  
  5533. # The following rules are equivalent to what tar_cat does.
  5534. # The rm -f is so that we don't overwrite a file that `make'
  5535. # may currently be reading from.
  5536. GENERIC_MAK_LIST=$(GS_MAK) $(LIB_MAK) $(INT_MAK) $(JPEG_MAK) $(LIBPNG_MAK) $(ZLIB_MAK) $(DEVS_MAK)
  5537. UNIX_MAK_LIST=dvx-gcc.mak unixansi.mak unix-cc.mak unix-gcc.mak
  5538.  
  5539. unix.mak: $(UNIX_MAK_LIST)
  5540.  
  5541. DVX_GCC_MAK=$(VERSION_MAK) dgc-head.mak dvx-head.mak $(GENERIC_MAK_LIST) dvx-tail.mak unix-end.mak
  5542. dvx-gcc.mak: $(DVX_GCC_MAK)
  5543.     rm -f dvx-gcc.mak
  5544.     $(CAT) $(DVX_GCC_MAK) >dvx-gcc.mak
  5545.  
  5546. UNIXANSI_MAK=$(VERSION_MAK) ansihead.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5547. unixansi.mak: $(UNIXANSI_MAK)
  5548.     rm -f unixansi.mak
  5549.     $(CAT) $(UNIXANSI_MAK) >unixansi.mak
  5550.  
  5551. UNIX_CC_MAK=$(VERSION_MAK) cc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5552. unix-cc.mak: $(UNIX_CC_MAK)
  5553.     rm -f unix-cc.mak
  5554.     $(CAT) $(UNIX_CC_MAK) >unix-cc.mak
  5555.  
  5556. UNIX_GCC_MAK=$(VERSION_MAK) gcc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5557. unix-gcc.mak: $(UNIX_GCC_MAK)
  5558.     rm -f unix-gcc.mak
  5559.     $(CAT) $(UNIX_GCC_MAK) >unix-gcc.mak
  5560.  
  5561. # Installation
  5562.  
  5563. TAGS:
  5564.     etags -t *.c *.h
  5565.  
  5566. install: install-exec install-scripts install-data
  5567.  
  5568. # The sh -c in the rules below is required because Ultrix's implementation
  5569. # of sh -e terminates execution of a command if any error occurs, even if
  5570. # the command traps the error with ||.
  5571.  
  5572. install-exec: $(GS)
  5573.     -mkdir $(bindir)
  5574.     $(INSTALL_PROGRAM) $(GS) $(bindir)/$(GS)
  5575.  
  5576. install-scripts: gsnd
  5577.     -mkdir $(scriptdir)
  5578.     sh -c 'for f in gsbj gsdj gsdj500 gslj gslp gsnd bdftops font2c \
  5579. pdf2dsc pdf2ps printafm ps2ascii ps2epsi ps2pdf wftopfa ;\
  5580.     do if ( test -f $$f ); then $(INSTALL_PROGRAM) $$f $(scriptdir)/$$f; fi;\
  5581.     done'
  5582.  
  5583. MAN1_PAGES=gs pdf2dsc pdf2ps ps2ascii ps2epsi ps2pdf
  5584. install-data: gs.1
  5585.     -mkdir $(mandir)
  5586.     -mkdir $(man1dir)
  5587.     sh -c 'for f in $(MAN1_PAGES) ;\
  5588.     do if ( test -f $$f.1 ); then $(INSTALL_DATA) $$f.1 $(man1dir)/$$f.$(man1ext); fi;\
  5589.     done'
  5590.     -mkdir $(datadir)
  5591.     -mkdir $(gsdir)
  5592.     -mkdir $(gsdatadir)
  5593.     sh -c 'for f in Fontmap \
  5594. cbjc600.ppd cbjc800.ppd *.upp \
  5595. gs_init.ps gs_btokn.ps gs_ccfnt.ps gs_cff.ps gs_cidfn.ps gs_cmap.ps \
  5596. gs_diskf.ps gs_dpnxt.ps gs_dps.ps gs_dps1.ps gs_dps2.ps gs_epsf.ps \
  5597. gs_fonts.ps gs_kanji.ps gs_lev2.ps \
  5598. gs_pfile.ps gs_res.ps gs_setpd.ps gs_statd.ps \
  5599. gs_ttf.ps gs_typ42.ps gs_type1.ps \
  5600. gs_dbt_e.ps gs_iso_e.ps gs_ksb_e.ps gs_std_e.ps gs_sym_e.ps \
  5601. acctest.ps align.ps bdftops.ps caption.ps decrypt.ps docie.ps \
  5602. font2c.ps gslp.ps impath.ps landscap.ps level1.ps lines.ps \
  5603. markhint.ps markpath.ps \
  5604. packfile.ps pcharstr.ps pfbtogs.ps ppath.ps prfont.ps printafm.ps \
  5605. ps2ai.ps ps2ascii.ps ps2epsi.ps ps2image.ps \
  5606. quit.ps showchar.ps showpage.ps stcinfo.ps stcolor.ps \
  5607. traceimg.ps traceop.ps type1enc.ps type1ops.ps uninfo.ps unprot.ps \
  5608. viewcmyk.ps viewgif.ps viewjpeg.ps viewpcx.ps viewpbm.ps viewps2a.ps \
  5609. winmaps.ps wftopfa.ps wrfont.ps zeroline.ps \
  5610. gs_l2img.ps gs_pdf.ps \
  5611. pdf2dsc.ps \
  5612. pdf_base.ps pdf_draw.ps pdf_font.ps pdf_main.ps pdf_sec.ps pdf_2ps.ps \
  5613. gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps \
  5614. gs_pdfwr.ps ;\
  5615.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(gsdatadir)/$$f; fi;\
  5616.     done'
  5617.     -mkdir $(docdir)
  5618.     sh -c 'for f in COPYING NEWS PUBLIC README \
  5619. bug-form.txt c-style.txt current.txt devices.txt drivers.txt fonts.txt \
  5620. helpers.txt hershey.txt history1.txt history2.txt history3.txt humor.txt \
  5621. install.txt language.txt lib.txt make.txt new-user.txt \
  5622. ps2epsi.txt ps2pdf.txt psfiles.txt public.txt \
  5623. unix-lpr.txt use.txt xfonts.txt ;\
  5624.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(docdir)/$$f; fi;\
  5625.     done'
  5626.     -mkdir $(exdir)
  5627.     for f in alphabet.ps chess.ps cheq.ps colorcir.ps escher.ps golfer.ps \
  5628. grayalph.ps snowflak.ps tiger.ps waterfal.ps ;\
  5629.     do $(INSTALL_DATA) $$f $(exdir)/$$f ;\
  5630.     done
  5631.